Can someone place example code for drawing svg/svgt/of mif files on s60 3rd edition. Please, please,please its urgent.
Thanks in Advance
Karim Jiwani
Can someone place example code for drawing svg/svgt/of mif files on s60 3rd edition. Please, please,please its urgent.
Thanks in Advance
Karim Jiwani
Hello,
maybe this will help you:
initializing:
drawing in Draw() of CCoeControl class:Code:CFbsBitmap *iBitmap, *iMask; AknIconUtils::CreateIconL(iBitmap, iMask, KVrexFile, EMyApp_mbg_file_image_index , EMyApp_mbg_file_image_index_mask); AknIconUtils::SetSize(iBitmap, TSize( 40,40), EAspectRatioPreserved); AknIconUtils::SetSize(iMask, TSize( 40, 40), EAspectRatioPreserved);
good luckCode:gc.BitBltMasked(TPoint(size1, size2), iBitmap, TRect( TPoint(0, 0), TPoint(40, 40)), iMask, EFalse);