绘图图像大小自动增加,System.Drawing.Image,C#,ASP.NET

发布于 2024-11-05 15:50:19 字数 903 浏览 3 评论 0原文

我想通过阅读来绘制图像 从文件系统图像文件,并渲染 它在文档中,如下:

if (File.Exists(imageFilePath)) //所有图像文件均为 16*16 像素
                {
                    位图 位图 = new 位图(18, 18);
                    图形图形 = Graphics.FromImage(位图);

                    图像图像 = Image.FromFile(imageFilePath);
                    图形.DrawImage(图像, 1, 1); // 之间有1个像素空间
                }

然而,灰色图像呈现 正确的尺寸(18*18 像素), 而彩色图像被截断,或者 必须增加位图大小(例如 位图(23, 23)。我想要所有的图片 有相同的尺寸!图像尺寸 在文件系统上都是相同的。

有点紧迫。任何想法都会 非常感谢!

解决方案如下:

   if (File.Exists(imageFilePath))
            {
                Bitmap bitmap = new Bitmap(18, 18);
                Graphics graphics = Graphics.FromImage(bitmap);

                Image image = Image.FromFile(imageFilePath);
                graphics.DrawImage(image, 1, 1, **18, 18**);                  

            }

I want to draw an image by reading it
from file sytem image file, and render
it on a document, below:

if (File.Exists(imageFilePath))   //all image file are 16*16 in pixel
                {
                    Bitmap bitmap = new Bitmap(18, 18);
                    Graphics graphics = Graphics.FromImage(bitmap);

                    Image image = Image.FromFile(imageFilePath);
                    graphics.DrawImage(image, 1, 1); //1 pixel space in between
                }

However, gray images renders the
correct size (18*18 in pixel),
whereas, colour images are cut off, or
have to increase the BitMap size (e.g.
Bitmap(23, 23). I want to all images
have the same size! The image sizes
are all the same on the file system.

It is a bit of urgency. Any idea would
be very much appreicated!

Solution below:

   if (File.Exists(imageFilePath))
            {
                Bitmap bitmap = new Bitmap(18, 18);
                Graphics graphics = Graphics.FromImage(bitmap);

                Image image = Image.FromFile(imageFilePath);
                graphics.DrawImage(image, 1, 1, **18, 18**);                  

            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文