tags:

views:

19

answers:

1

Is there a way I can build a bitmap strictly from RGB values for each pixel? I'm trying to build a bitmap from a string of characters.

+2  A: 

You can use Color.FromArgb to construct the pixel color from your text file, and Bitmap.SetPixel to set the pixel color for that pixel position in the bitmap.

Oded