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)
 
Back
Top