hi,
i am using the capturing image and saving exemple in the forum.
there is no error but the image is not saved.
this is my code :
void CCameraEngine::ImageReady(CFbsBitmap* aBitmap, HBufC8* aData, TInt aError)
{
if (!aError) {
RFs fsSession;
RFile aFile;
User::LeaveIfError(fsSession.Connect());
_LIT(KFilename, "E:\\Images\\001.jpg");
aFile.Replace(fsSession, KFilename, EFileWrite|EFileShareAny);
aBitmap->Save(KFilename);
aFile.Flush();
aFile.Close();
fsSession.Close();
}
//void CMyappAppUi::HandleCommandL(TInt aCommand)
...
case Ecam:
{
CCameraController* iCameraController= CCameraController::NewL();
iCameraController->InitializeCameraL();
iCameraController->SnapL();
break;
....
My device 6630
Thnak u

i can save image captured by camera and i can control the jpeg quality..
oCancel()




