gpt4 book ai didi

vb.net - 在 VB.Net 中从头开始创建位图图像时,质量很差?

转载 作者:行者123 更新时间:2023-12-04 10:58:40 24 4
gpt4 key购买 nike

Vb.Net 应用程序从头开始创建位图,然后转换为 tiff 或将其发送到打印机。在这两种情况下,图像的质量(在这种情况下是字体)都不好。下面列出的示例代码创建了我用来写入图像的图形对象。

Dim gr2 As Graphics = Graphics.FromImage(New Bitmap(800, 1000), Imaging.PixelFormat.Format32bppPArgb))

最佳答案

与@durilai 所说的一起,如果您要打印,您可能需要提高分辨率。 .Net 使用的系统分辨率通常为 96 DPI,但打印机可以处理 300 DPI 或更高的文件。

    'Create a new bitmap
Using Bmp As New Bitmap(800, 1000, Imaging.PixelFormat.Format32bppPArgb)
'Set the resolution to 300 DPI
Bmp.SetResolution(300, 300)
'Create a graphics object from the bitmap
Using G = Graphics.FromImage(Bmp)
'Paint the canvas white
G.Clear(Color.White)
'Set various modes to higher quality
G.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic
G.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
G.TextRenderingHint = Drawing.Text.TextRenderingHint.AntiAlias

'Create a font
Using F As New Font("Arial", 12)
'Create a brush
Using B As New SolidBrush(Color.Black)
'Draw some text
G.DrawString("Hello world", F, B, 20, 20)
End Using
End Using
End Using

'Save the file as a TIFF
Bmp.Save("c:\test.tiff", Imaging.ImageFormat.Tiff)
End Using

关于vb.net - 在 VB.Net 中从头开始创建位图图像时,质量很差?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2478502/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com