I draw several images in a grid. Images are saved as 16x16px pngs.
However, later I decided to increase the grid size to 32x32px.
When I use the following code:
graphics.DrawImage(image, Xdraw, Ydraw, 32, 32);
where the image is the image downloaded from png, and Xdraw and Ydraw are the upper left corner, which is allowed somewhere above.
The image is slightly blurry, because .DrawImage uses a bicubic (or some other anti-aliasing function) to scale the image. I would like it to smooth, so I can keep hard edges.
Is it possible?
source share