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

From PeformIQ Upgrade
Jump to navigation Jump to search
 
Line 1: Line 1:
Also see - [[C-Sharp Image Processing]]


=Bitmaps and Images=


Create Bitmap of image from file:
Create Bitmap of image from file:


   bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);
   bmDatabaseImage = (Bitmap)Image.FromFile(dt.Rows[index]);
=Links=
* http://csharphelper.com/blog/2014/10/let-the-user-draw-and-move-polygons-in-c/


Also see - [[C-Sharp Image Processing]]
Also see - [[C-Sharp Image Processing]]

Latest revision as of 21:24, 28 May 2015

Also see - C-Sharp Image Processing

Bitmaps and Images

Create Bitmap of image from file:

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

Links

Also see - C-Sharp Image Processing