string to image

  • Thread starter Thread starter Hrcko
  • Start date Start date
H

Hrcko

I have a string(nvarchar) in database where is a path for picture.
How to load picture with this path?

Hrcko
 
Hrcko,

You can just pass that string to the static FromFile method on the Image
class and it will return an Image (which is really a Bitmap instance) back
to you.

Hope this helps.
 
Back
Top