i want image converter code in c#
i want bmp,jpg, all related image formate converter in c# plz give me code related that
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jony GreenPosted Oct 20, 2015, 2:43 AM
Layla LawrencePosted Jan 30, 2014, 9:44 AM
But that project in Sanjeeb's project is a good start I think
Sanjeeb LenkaPosted Jul 11, 2013, 5:22 AM
http://www.codeproject.com/Articles/1396/A-C-Image-Converter
arron leePosted Jul 11, 2013, 5:17 AM
Phani BhushanPosted Jan 24, 2013, 12:03 AM
or
public byte[] imageToByteArray(System.Drawing.Image img)
{
MemoryStream ms = new MemoryStream();
img.Save(ms,System.Drawing.Imaging.ImageFormat.GIF);
return ms.ToArray();
}