VB改变图片大小的函数

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

相关文章

一个工作了20年的电子工程师谈入职面试

看到很多讨论入职面试的帖子,作为一个做了20年研发的电子工程师,想说说自己的想法。也许因为我在巨无霸式的企业里工作了太长的时间,认识会有一些局限,不过希望能起到一些参考价值。 从走出校门,我们会...

easybcd.jpg.thumb.jpg

CDlinux硬盘安装,试验有效!

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

VB操作INI文件方案

VB读写ini文件(1) 自从注册表诞生以来ini文件正在逐渐失去其市场占有率,然而基于ini文件的独立性,致使其还没有到达退出历史舞台的地步,很多应用程序的初始化和一些界面参数的设置仍然很愿意...

最全电子元器件介绍(图文教程)

本文档对常用元器件概念、分类、主要参数、功能等进行了详细阐述。 很详细,实物图展示。楼主出血大放送! 为了大家让能看懂BOM中电子料的规格描述,了解常用电子元器件的类别...

阻焊剂分类及阻焊剂配方和使用方法

阻焊层,顾名思义,就是防止焊接的一层。它一般是绿色或者其它颜色,覆盖在布有铜线上面的那层薄膜,它起绝缘,还有防止焊锡附着在不需要焊接的一些铜线上。当然,它也在一定程度上保护布线层。 &...

VB自删除模块源码

运行后能够删除自己。 提示:不要在VB的IDE下运行,否则会删除VB6.exe。一定要编译后运行。 下载地址:VB自删除源码.rar 部分源码: Pri...

发表评论    

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