I tried to save a jpg with rotation, but the saved image's size was null.

How can I do this? Should I convert the image to a bitmap using bitmapfactory, and then convert to jpg and save?

Please tell me the code or link examples.

link|improve this question
feedback

2 Answers

Please check this link

link|improve this answer
please quote the relevant parts of the article – lesmana Dec 9 '11 at 15:11
feedback
Bitmap bmp1 = BitmapFactory.decodeResource(getResources(), R.drawable.face);
canvas.drawBitmap(bmp, 0, 0, pnt);  

{
    rotate.setTranslate(67, 97);
    rotate.preRotate(dyx, bmp1.getWidth()/2, bmp1.getHeight()/2);
    canvas.drawBitmap(bmp1, rotate, pnt);   
}
link|improve this answer
Please explain your snippet. Posting only code isn't very helpful. – Pubby Dec 12 '11 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.