Convert binarydata to Image
C#
3
Posts
2
Posters
0
Views
1
Watching
-
How can I convert binary data to image then converted binary data i want to save as jpeg or another format regards... _____________________ Proud to be Albanian _____________________
Hi Load the data into a
MemoryStream
, then useImage.FromStream
. Then useImage.Save
. BTW, you must keep theMemoryStream
open until you have finished with theImage
. ---------------------------- Be excellent to each other :) EasiReports[^] My free reporting component for WinForms. -
Hi Load the data into a
MemoryStream
, then useImage.FromStream
. Then useImage.Save
. BTW, you must keep theMemoryStream
open until you have finished with theImage
. ---------------------------- Be excellent to each other :) EasiReports[^] My free reporting component for WinForms.