VB改变图片大小的函数

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

相关文章

[C语言]用9行代码干掉Windows XP,2000

微软一直声称Windows XP多么多么稳定可靠,但日前一位名为Masaru Tsuchiyama(留在程序下方,所以应该是他的昵称)外国编程爱好者刊出了一小段C语言代码。这一只有9行的小程序如...

卡尔曼滤波器算法(C语言)

卡尔曼滤波器算法(C语言)! }* v) v/ j" }4 a3 `/ l     将高斯过程回归融入平方根无迹卡尔曼滤波(SRUKF)算法,本文提出了一种不确定系统模型协方...

小歆网页刷屏工具01.jpg

[小歆][网页刷屏工具][V1.3][2012.10.01]

小歆网页刷屏工具 V1.3 软件介绍:     1.《小歆网页刷屏工具》是由小歆工作室内部刷屏工具研发而来的;     2.软件界面简洁,轻...

[安卓]Linux工具箱 BusyBox Pro v10.4 汉化版

测试机型:小米2S 支持系统:Android 2.2 及以上 汉化人员:吾爱破解·OPkyd(禁止剽窃盗用,转载请注明出处) 应用简介: BusyBox 是款整合了多种常用linu...

H桥电路01.jpg

H桥驱动电路原理

一、H桥驱动电路     图4.12中所示为一个典型的直流电机控制电路。电路得名于“H桥驱动电路”是因为它的形状酷似字母H。4个三极管组成H的4条垂直腿,而电机就...

flv嗅探工具.jpg

[自浩][FLV嗅探工具][趋于完美版][2012.6.20]

软件名称:FLV嗅探工具【趋于完美版】 软件大小:40K(主程序) 软件说明:嗅探各大主流视频网站的视频下载地址,并且自动切换为超清、高清或者480P高清画质的下载地址,...

发表评论    

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