VB改变图片大小的函数

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

相关文章

WIN7下无驱动从硬盘安装UBUNTU双系统方法

机器上目前有WIN7,现在想再安装个UBUNTU,双系统来玩。 1、保留足够的空间来安装UBUNTU,在WINDOWS7下把这些空间设置为空闲空间。 2、把ubuntu-10.10-desk...

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

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

PCB设计的几点经验总结

第一:前期准备。这包括准备元件库和原理图。“工欲善其事,必先利其器”,要做出一块好的板子,除了要设计好原理之外,还要画得好。在进行PCB设计之前,首先要准备好原理图SCH的元件库和PCB的元件...

高清知识资料汇总

简单解释:  清晰度比较,TS<R5、DVDscr<DVDRIP<480P<BDRIP<720P<1080P  详细解释如下: ...

U盘装系统中bios怎么设置USB启动

U盘装系统中bios怎么设置USB启动(图文教程)   常见的两种设置方法:8 L( q)...

小歆专用挂机锁V1.5测试1.jpg

[全新动态]小歆专用挂机锁项目开始启动!!!

小歆专用挂机锁V1.5升级项目 目前1.0版本项目已经结束,接下来是我们加强版1.5版本的升级日志,欢迎下载使用...    项目日志:...

发表评论    

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