Hi,
is there any class to convert a picture from the bmp format to jpg and from jpg to bmp (Series 60) ??
thanks in advance,
Dominique HUGO
Hi,
is there any class to convert a picture from the bmp format to jpg and from jpg to bmp (Series 60) ??
thanks in advance,
Dominique HUGO
----------------------------------------------------------------------------------
FExplorer is my baby !
you can get the FREE version from www.gosymbian.com
you can get the PRO version from http://store.ovi.com/content/339454
Check the Example for Bitmap manipulation:
void CBmpmanipAppView::SaveL()
{
if (iConvertState != EConvertStateReady)
{
return;
}
//Save the image as a JPG (JFIF) format
TMdaJfifClipFormat jfifFormat;
jfifFormat.iSettings.iSampleScheme = MdaJpgSettings::EMonochrome;
jfifFormat.iSettings.iQualityFactor = 20;
iFileSaver->CreateL(KBmpFileName, &jfifFormat, NULL, NULL);
iConvertState = EConvertStateSaving;
}
Nani