C#实现图片放大功能的按照像素放大图像方法

时间:2021-05-20

本文实例讲述了基于Visual C#实现的图片放大功能代码。可以直接放大像素,类似photoshop的图片放大功能,可用于像素的定位及修改,由于使用了指针需要勾选允许不安全代码选项,读者可将其用于自己的项目中!

关于几个参数说明:
srcbitmap源图片
multiple图像放大倍数
放大处理后的图片

注意:需要在头部引用:using System.Drawing;using System.Drawing.Imaging;

至于命名空间读者可以自己定义。

主要功能代码如下:

using System.Drawing;using System.Drawing.Imaging;public Bitmap Magnifier(Bitmap srcbitmap, int multiple){if (multiple <= 0) { multiple = 0; return srcbitmap; }Bitmap bitmap = new Bitmap(srcbitmap.Size.Width * multiple, srcbitmap.Size.Height * multiple);BitmapData srcbitmapdata = srcbitmap.LockBits(new Rectangle(new Point(0, 0), srcbitmap.Size), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);BitmapData bitmapdata = bitmap.LockBits(new Rectangle(new Point(0, 0), bitmap.Size), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);unsafe{byte* srcbyte = (byte*)(srcbitmapdata.Scan0.ToPointer());byte* sourcebyte = (byte*)(bitmapdata.Scan0.ToPointer());for (int y = 0; y < bitmapdata.Height; y++){for (int x = 0; x < bitmapdata.Width; x++){long index = (x / multiple) * 4 + (y / multiple) * srcbitmapdata.Stride;sourcebyte[0] = srcbyte[index];sourcebyte[1] = srcbyte[index + 1];sourcebyte[2] = srcbyte[index + 2];sourcebyte[3] = srcbyte[index + 3];sourcebyte += 4;}}}srcbitmap.UnlockBits(srcbitmapdata);bitmap.UnlockBits(bitmapdata);return bitmap;}

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章