Is there a way I can bu开发者_运维技巧ild a bitmap strictly from RGB values for each pixel? I'm trying to build a bitmap from a string of characters.
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.
精彩评论