do anyone know how to generate images using c# coding like the one i pasted at the bottom?
http://i55.tinypic.com/5yders.jpg
thanks.
This is a discussion on creating images using C# code within the C# Programming forums, part of the General Programming Boards category; do anyone know how to generate images using c# coding like the one i pasted at the bottom? http://i55.tinypic.com/5yders.jpg thanks....
do anyone know how to generate images using c# coding like the one i pasted at the bottom?
http://i55.tinypic.com/5yders.jpg
thanks.
You can save the Bitmap
Code:Bitmap bit = new Bitmap(100,100); //populate bitmap bit.Save("my.jpeg", ImageFormat.Jpeg);