为了调整我的图片大小,我使用这种方法:
private Bitmap ResizeBitmap(Bitmap b, int nWidth, int nHeight)
{
Bitmap result = new Bitmap(nWidth, nHeight);
using (Graphics g = Graphics.FromImage((System.Drawing.Image)result))
g.DrawImage(b, 0, 0, nWidth, nHeight);
return result;
}
是否有可能在图片的顶部/底部或右侧/左侧创建白色或黑色边框,以便图片居中并且我不必通过 css 来做?
示例:我有一张 200x100 像素的图片,我想让它在我网站上的 100x100 像素图像字段中工作。目前我将 200x100 像素的图片调整为 100x50 像素,以便它在 100x100 像素的框中匹配,并通过 css 将图片居中。
我需要的是在调整图片大小以添加边框后,图片不是 100x50 像素,而是 100x100 像素,带有白色或黑色边框...
任何想法......我可以用普通的.net库来做到这一点吗?感谢所有的建议!
最好的问候,杰西卡