How to read images to Symbian

來源:互聯網
上載者:User

The CImage_Reader implementation illustrates how to use CImageDecoder to open and read different

types of images (jpeg, png, depending on the device) and how to convert them to the Symbian bitmap

format, which then can be used to draw the image to the screen.

The GetFileType function is used to determine the type of the image file, and if the image type is not

recognized by the system it will be indicated by the iError variable. The MImageReadyCallBack callback

interface is used to notify of the completion of the image loading.

 

Image_Reader.cpp

 

#include <APMREC.H>
#include <APGCLI.H>
 
 
CImage_Reader::CImage_Reader(MImageReadyCallBack& aNotify)
:CActive(0),iNotify(aNotify)
    {
    }
 
CImage_Reader::~CImage_Reader()
{
Cancel();
delete iFrame;
        delete iImageDecoder;
}
 
 
void CImage_Reader::ConstructL(const TDesC& aFileName)
{
CActiveScheduler::Add(this);
 
iImageName.Copy(aFileName);
 
TBuf8<255> ImageType;
GetFileType(aFileName, ImageType);
 
if(ImageType.Length() && iImageName.Length())
{
iImageDecoder = CImageDecoder::FileNewL(CCoeEnv::Static()->FsSession(),aFileName,ImageType);
 
delete iFrame;
iFrame = NULL;
iFrame = new(ELeave)CFbsBitmap();
iFrame->Create(iImageDecoder->FrameInfo(0).iOverallSizeInPixels,iImageDecoder->FrameInfo(0).iFrameDisplayMode);
 
iImageDecoder->Convert(&iStatus,*iFrame,0);
SetActive();
}
else
{
TRequestStatus* status=&iStatus;
User::RequestComplete(status, KErrNotSupported);
SetActive();
}
}
 
void CImage_Reader::GetFileType(const TDesC& aFileName, TDes8& aFileType)
{
TEntry FileEntry;
 
if(CCoeEnv::Static()->FsSession().Entry(aFileName,FileEntry) == KErrNone)
{
TBuf8<255> FileBuffer;
 
if(!FileEntry.IsDir())
{
TInt FileSize = FileEntry.iSize;
 
if(FileSize > 255)
{
FileSize = 255;
}
 
if(CCoeEnv::Static()->FsSession().ReadFileSection(aFileName,0,FileBuffer,FileSize) == KErrNone)
{
RApaLsSession RSession;
if(RSession.Connect() == KErrNone)
{
TDataRecognitionResult FileDataType;
 
RSession.RecognizeData(aFileName,FileBuffer,*&FileDataType);
 
aFileType.Copy(FileDataType.iDataType.Des8());
 
RSession.Close();
}
}
}
}
}
 
void CImage_Reader::DoCancel()
{
iImageDecoder->Cancel();
}
 
CFbsBitmap* CImage_Reader::Bitmap()
{
return iFrame;
}
 
 
void CImage_Reader::RunL()
{
iNotify.ImageReadyL(iStatus.Int());
}

Image_Reader.h

#include <e32base.h>
#include <coecntrl.h>
#include <w32std.h>
#include <e32std.h>
#include <cntdef.h>
#include <cntdb.h>
#include <ImageConversion.h>
 
class CFbsBitmap;
 
class MImageReadyCallBack
{
public:
virtual void ImageReadyL(const TInt& aError) = 0;
};
 
class CImage_Reader : public CActive
{
public:
    CImage_Reader(MImageReadyCallBack& aNotify);
    void ConstructL(const TDesC& aFileName);
    ~CImage_Reader();
public:
    CFbsBitmap* Bitmap();
protected:
void DoCancel();
void RunL();
private:
void GetFileType(const TDesC& aFileName, TDes8& aFileType);
private:
MImageReadyCallBack&iNotify;
CImageDecoder*iImageDecoder;
CFbsBitmap*iFrame;
TFileNameiImageName;
};

http://wiki.forum.nokia.com/index.php/How_to_read_images_to_Symbian_bitmap

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.