Difference between revisions of "C-Sharp - Working with Images"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (Created page with " bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);") |
PeterHarding (talk | contribs) |
||
Line 1: | Line 1: | ||
Create Bitmap of image from file: | |||
bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]); | bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]); | ||
[[Category:CSharp]] | |||
[[Category:Image Processing]] |
Revision as of 22:06, 28 May 2015
Create Bitmap of image from file:
bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);