VB改变图片大小的函数

小歆13年前软件源码04907
   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        

相关文章

I2C总线协议 目录.jpg

I2C总线协议 中文版 (高清无水印含目录)

I2C总线协议 中文版 介绍:        符合I2C总线的I2C允许系统设计快速向前推进,直接从功能结构图到原型,此外,由于它们直接,剪贴...

Discuz附件下载权限绕过工具.png

[小歆][Discuz附件下载权限绕过工具][V1.1][2014.03.13]

Discuz附件下载权限绕过工具V1.1 本软件利用Discuz论坛的漏洞来下载论坛的附件。 【Discuz3.X的有部分好像已经失效了,自测,我刚刚测试了一个3.X论坛还是...

网络理财收益查询工具2.1.jpg

[小歆][网络理财收益查询工具][V2.1][2014.2.14]

网络理财收益查询工具V2.1 正式版 介绍:     网络理财收益查询工具原名为余额宝收...

[LCG][ASPack加壳工具][V2.8][2012.12.24]

ASPack加壳工具 V2.8     AsPack是高效的Win32可执行程序压缩工具,能对程序员开发的32位Windows可执行程序进行压缩,使最终文件减小达7...

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

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

Screenshot_2014-05-18-13-44-47.png

ZTE U808全局美化 内核ROOT优化 boot省电 流畅稳定

机型名称:中兴U808 安卓版本:4.0 作者:小张 版本号:ZTE U808V1.0.0B02 6 v4 {+ M) X, }& h: @; N 下载链接:3 m' s: {- B...

发表评论    

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