相关疑难解决方法(0)

C# - 调整图像画布大小(保持源图像的原始像素尺寸)

我的目标是拍摄一个图像文件并将尺寸增加到下一个2的幂,同时保留像素(也就是不缩放源图像).所以基本上最终结果将是原始图像,以及跨越图像右侧和底部的额外白色空间,因此总尺寸是2的幂.

下面是我正在使用的代码; 这会创建具有正确尺寸的图像,但源数据会因某种原因略微缩放和裁剪.

// Load the image and determine new dimensions
System.Drawing.Image img = System.Drawing.Image.FromFile(srcFilePath);
Size szDimensions = new Size(GetNextPwr2(img.Width), GetNextPwr2(img.Height));

// Create blank canvas
Bitmap resizedImg = new Bitmap(szDimensions.Width, szDimensions.Height);
Graphics gfx = Graphics.FromImage(resizedImg);

// Paste source image on blank canvas, then save it as .png
gfx.DrawImageUnscaled(img, 0, 0);
resizedImg.Save(newFilePath, System.Drawing.Imaging.ImageFormat.Png);
Run Code Online (Sandbox Code Playgroud)

看起来源图像是根据新的画布大小差异缩放的,即使我使用的是一个名为DrawImageUnscaled()的函数.请告诉我我做错了什么.

c# graphics drawing image image-processing

12
推荐指数
1
解决办法
1万
查看次数

标签 统计

c# ×1

drawing ×1

graphics ×1

image ×1

image-processing ×1