Advertisement
Guest User

Untitled

a guest
Apr 25th, 2014
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Bitmap bmp = new Bitmap(1, 1, PixelFormat.Format32bppArgb);
  2. using (var g = Graphics.FromImage(bmp)) {
  3.     g.Clear(Color.Transparent);
  4. }
  5. bmp.Save(@"c:\myimage.png", ImageFormat.Png);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement