how to create a bmp/png of an exact size ?

  • Thread starter Thread starter John A Grandy
  • Start date Start date
J

John A Grandy

What tool do I use and how do I create a bmp/png of an exact size ( m x n
pixels ) ?
 
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 ) ?

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 ) ?

Check out the 'Bitmap' class' constructors. You can later save the bitmap
to a file by calling the 'Bitmap' object's 'Save' method.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top