Thread: creating images using C# code

  1. #1
    Registered User
    Join Date
    Jan 2011
    Posts
    1

    creating images using C# code

    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.

  2. #2
    Registered User C_ntua's Avatar
    Join Date
    Jun 2008
    Posts
    1,853
    You can save the Bitmap
    Code:
    Bitmap bit = new Bitmap(100,100);
    //populate bitmap
    bit.Save("my.jpeg", ImageFormat.Jpeg);

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Explain this C code in english
    By soadlink in forum C Programming
    Replies: 16
    Last Post: 08-31-2006, 12:48 AM
  2. Binary Search Trees Part III
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 16
    Last Post: 10-02-2004, 03:00 PM
  3. Creating AVI movies with C Code
    By flamingwitch in forum C Programming
    Replies: 3
    Last Post: 08-06-2004, 07:00 AM
  4. True ASM vs. Fake ASM ????
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 04-02-2003, 04:28 AM
  5. Interface Question
    By smog890 in forum C Programming
    Replies: 11
    Last Post: 06-03-2002, 05:06 PM