I am using a Bitmap
to load images to PictureBoxes.
Dim bm1 As Bitmap = My.Resources.pixelart 'the images width and height is 32
PictureBox1.Size = New Size(200, 200)
PictureBox1.Image = bm1
And because of the second line, the image is anti-aliased. How can I turn off this feature?