VB改变图片大小的函数

小歆14年前软件源码05560
   Public Function ResizePicture(ByVal sourceImage As Bitmap, _
                ByVal newSize As Size) As Bitmap '调整图片大小(图片源,新尺寸)

        Dim Result_image As New Bitmap(sourceImage, newSize.Width, newSize.Height)
        Dim Gr As Graphics

        Gr = Graphics.FromImage(Result_image)
        Gr.DrawImage(Result_image, 0, 0, newSize.Width, newSize.Height)
        Gr.Save()

        Return Result_image
    End Function

    Public Function CropBitmap(ByVal inputBmp As Bitmap, _
                ByVal cropRectangle As Rectangle) As Bitmap '裁剪位图(输出,矩形)
        '创建一个新的位图对象根据输入的
        Dim newBmp As New Bitmap(cropRectangle.Width, _
                 cropRectangle.Height, _
                 System.Drawing.Imaging.PixelFormat.Format24bppRgb) 'Graphics.FromImage 
                                                'doesn't like Indexed pixel format

        '创建一个图形对象,并将其附加的位图
        Dim newBmpGraphics As Graphics = Graphics.FromImage(newBmp)

        '对输入图像中裁剪矩形绘制的部分
        '图形对象
        newBmpGraphics.DrawImage(inputBmp, _
              New Rectangle(0, 0, cropRectangle.Width, cropRectangle.Height), _
                cropRectangle, _
                GraphicsUnit.Pixel)

        'Return the bitmap
        newBmpGraphics.Dispose()

        'newBmp will have a RawFormat of MemoryBmp because it was created
        'from scratch instead of being based on inputBmp.  Since it is inconvenient
        'for the returned version of a bitmap to be of a different format, now convert
        'the scaled bitmap to the format of the source bitmap
        Return newBmp
    End Function        

相关文章

Google官方C++编程规范手册

Google官方C++编程规范手册

Google C++ 编程规范 目录: 下载地址:       小歆网盘:Google C  编程规范(541.98 KB...

Android 开发环境安装手册

《Android中文教程》中文版3 R+ X% S- A" D) \; B 9 j- q5 i# ^/ ]3 q [简介]:《Android入门手册》中文版,比...

[安卓]dSploit汉化修正版-秒杀WIFI杀手系列软件!

  话说原来当初就在用他 , 后来换了手机等原因就没鼓捣过了,功能那是没得说,WIFI网络之主宰者,渗透网络之无双神器,无所不渗,防线穿透,可惜是英文吧的那个时候版本还很低本人还没...

LT3083:降压DC-DC解决方案电路图

LT3083:降压DC-DC解决方案电路图

LT3083 是一款3A 低压差线性稳压器,可通过并联来增加输出电流或在表面贴装型电路板上散播热量。这款新型稳压器专为用作一个精准电流源和电压跟随器而设计,可在许多要求高电流、至零的可调节能力和不设...

中兴V880刷机包美化界面精简优化超省电

中兴V880刷机包美化界面精简优化超省电

0 b0 f9 u3 X, u0 M! e & z4 y# X; v) l$ Q: A ROM名称 [小张工作室]中兴V8...

Protel 或 AD10 元件名称分类

1.电阻 固定电阻:RES 半导体电阻:RESSEMT 电位计:POT 变电阻:RVAR 可调电阻:res1...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。