Difference between revisions of "C-Sharp - Working with Images"

From PeformIQ Upgrade
Jump to navigation Jump to search
(Created page with " bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);")
 
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 21:06, 28 May 2015


Create Bitmap of image from file:

 bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);