When creating an bitmap image from scratch in VB.Net, the quality stinks?
Posted
by ajl
on Stack Overflow
See other posts from Stack Overflow
or by ajl
Published on 2010-03-19T15:30:03Z
Indexed on
2010/03/19
15:31 UTC
Read the original article
Hit count: 367
The Vb.Net application creates a bitmap from scratch and either converts to a tiff or sends it to a printer. In both cases, the quality of the image (in this case the font) is not good at all. The sample code listed below creates the graphics object that I use to write to the image.
Dim gr2 As Graphics = Graphics.FromImage(New Bitmap(800, 1000), Imaging.PixelFormat.Format32bppPArgb))
© Stack Overflow or respective owner