Click here to Skip to main content
15,997,744 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have to convert the images file(ex jpg) into images file(ex gif,pdf,pdf,bmp,wbmp).
Please send the code.
Posted

check this out:

A C# Image Converter[^]

hope it helps :)
 
Share this answer
 
Comments
[no name] 7-Jul-11 5:46am    
perfect +5.
Uday P.Singh 7-Jul-11 5:53am    
thanks :)
[no name] 7-Jul-11 5:55am    
welcome.:)
hi you can try this
System.Drawing.Image image1 = System.Drawing.Image.FromFile(@"C:\test.bmp");
 image1.Save(@"C:\test.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900