J John A Grandy Nov 14, 2006 #1 What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ?
M Michael C Nov 14, 2006 #2 John A Grandy said: What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ? Click to expand... new bitmap(100,100, pixelformat.whatever)
John A Grandy said: What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ? Click to expand... new bitmap(100,100, pixelformat.whatever)
H Herfried K. Wagner [MVP] Nov 15, 2006 #3 John A Grandy said: What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ? Click to expand... Check out the 'Bitmap' class' constructors. You can later save the bitmap to a file by calling the 'Bitmap' object's 'Save' method.
John A Grandy said: What tool do I use and how do I create a bmp/png of an exact size ( m x n pixels ) ? Click to expand... Check out the 'Bitmap' class' constructors. You can later save the bitmap to a file by calling the 'Bitmap' object's 'Save' method.