VB改变图片大小的函数

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

相关文章

STM32软件 RealView MDK-ARM 4.12下载(RVMDK4.12)

STM32软件 RealView MDK-ARM 4.12下载(RVMDK4.12)

RealView MDK-ARM 4.12 RVMDK4.12简介:        RealView MDK出众的价格优势和功能优势,势将成为...

进击的巨人【特殊字体】.jpg

[字体]《进击的巨人》OP2风格特殊字体

网友制作动画《进击的巨人》OP2《自由之翼》的STAFF表使用了一种特殊字体。现在日本网友 たぬき侍 制作出了这款字体,并取名为“自由之翼体”,已于9月11日开放免费下载,商业也可免费使用。 &nb...

制作win7+ubuntu +winPE+CDlinux多系统启动U盘

制作前期准备工作 1.需要软件 grub4dos(http://sourceforge.net/projects/grub4dos/files/)...

南方起名程序.jpg

[lkou][南方起名程序][V3.12][破解版]

南方起名程序 V3.12 破解版 本程序有如下功能:个人起名,姓名分析,公司名分析,公司起名,姓名学多种数理解释、查询,单字笔画查询等。另外本程序有“数字吉凶”功能,可分析...

小歆工作室旗下网盘正式发布!!!

小歆工作室旗下网盘正式发布!!!

小 歆 网 盘 正 式 版 小歆工作室免费网盘 二零一三年的冬天,小歆工作室发布了新产品公测 —— 小歆免费网盘 二零一四年的冬天,小歆工作室正式发布小歆免费网盘 ——...

u808_01.png

中兴U808 官方深度精简版 全局透明美化稳定流畅 可长期使用

中兴U808是我个人非常喜欢的一款机型。本ROM是基于官方4.0.3制作,在保证官方原汁原味的基础上,添加了三星风格,删除了大部分没有实际用途的软件,释放更多系统内存从而达到让系统分配更多内存供主固件...

发表评论    

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