Converting bmp in jpg

  • Thread starter Thread starter Roberto Alvarado
  • Start date Start date
R

Roberto Alvarado

Hi guys!!!

Anybodu know how can I convert a bmp file in a jpg file in CF ? In Vb or in
C#

Thanks in advance

RA
 
Image newImage = Image.FromFile(s_Output_PC); // Read in the .BMP
File
s_Output =
String.Format(s_FormatPC,Enum.GetName(typeof(Face),i),Enum.GetName(typeof(Su
it),j));
newImage.Save(s_Output,ImageFormat.Jpeg); // Save as .Jpeg

This works on Framework PC, but not tried on Compact.

Mark Johnson, Berlin Germany
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top