VB改变图片大小的函数

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

相关文章

[小歆][小歆定时提醒工具][V2.2.1][2011.08.11]

小歆定时提醒工具 V2.2.1 正式版 介绍: 《小歆定时提醒工具》是由小歆工作室开发的一款定时提醒工具,并集成了一些方便使用的功能,增...

easybcd.jpg.thumb.jpg

CDlinux硬盘安装,试验有效!

win7 CDlinux 硬盘安装; 软件:EasyBCD,CDlinux.iso 解压或提取CDlinux文件夹(共一个文件夹)至启动分区(如C:\) 打开EasyBCD 点左边的"ADD N...

c-free 3.5.jpg

C-Free 针对C/C++初学者的集成化开发环境

C-Free是针对C/C++初学者的集成化开发环境 开发: C-Free开发工具: Borland C++ Builder 6.0 C-Free中使用的编译...

字模提取软件截图.jpg

[Horse][字模提取][V2.2]

字模提取V2.2   下载地址:字模提取V2.2.zip...

小歆工作室 官方论坛管理规定(2013.5.1更新)

                           ...

小歆工作室管理工作说明以及一些公告

1。论坛版主的申请,前提是你找对你喜欢的版块,喜欢的内容。并且有信心将这个版块发展起来。如果仅仅是为了个版主头衔。建议不要进行申请,最多一个星期就会被...

发表评论    

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