VB改变图片大小的函数

小歆14年前软件源码05294
   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 正式版 介绍: 《小歆定时提醒工具》是由小歆工作室开发的一款定时提醒工具,并集成了一些方便使用的功能,增...

电容式触摸按键 PCB布线

电容式触摸按键 布局 A.  CIN电容尽量靠近IC放置,各个通道的CIN电容必须用铺地隔离。感应盘也要尽量靠近IC,这样感应盘到IC的连线就会最短...

刷机精灵截图20140513164431.png

ZTE V880官方精简优化 无任何BUG 适合长期使用

机型名称:中兴V880 & _3 y  M7 ]6 V9 i1 ?- ~ 安卓版本:2.1 作者:小张# F: v# L) c, h 版本号:UNI_CN_...

在线学高校精品课程(部分失效)

计算机专业视频合集(计算机、数据库、编程、软件等) 下载地址: http://pan.baidu.com/s/1c0voWnQ 密码: sknk 土木类专业视频合集 (土木...

VB(十六进制)颜色代码与RGB互转工具V2.0(附屏幕取色工具)01.jpg

[小歆][VB(十六进制)颜色代码与RGB互转工具][V2.0][附屏幕取色工具][2012.10.01]

VB(十六进制)颜色代码与RGB互转工具 V2.0 (附屏幕取色工具) 软件介绍:     1.《VB(十六进制)颜色...

flv嗅探工具.jpg

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

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

发表评论    

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