Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to rotate i image more time,and i cannot to do it in the onDraw Method,my code is:

           options = new BitmapFactory.Options();
    options.inScaled = false;
    options.inJustDecodeBounds = false;
    options.inDither = false;

    options.inScaled = false;
    options.inPreferredConfig = Bitmap.Config.ARGB_8888;

      public void setAddBmpImage(int rotate) {

    byte[] by = getBitmapByte(rotatedBitmap);
    Bitmap source = BitmapFactory.decodeByteArray(by, 0, by.length, options);

     Bitmap bmpSephia = Bitmap.createBitmap(rotatedBitmap.getWidth(),   rotatedBitmap.getHeight(), Bitmap.Config.ARGB_8888);
     Canvas canvas = new Canvas(bmpSephia);
     canvas.rotate(rotate);
     canvas.drawBitmap(source, 0, 0, null);
     rotatedBitmap= bmpSephia;
     imageStartX = (screenWidth / 2 - rotatedBitmap.getWidth() / 2);
        imageStartY = (screenHeight / 2 - rotatedBitmap.getHeight() / 2);
        invalidate();

}

through the image rotate very well,but the image is deformation,it is very ugly ,can you tell me why,and give me a good method,thank you

share|improve this question

2 Answers

Try using the setAntiAlias(true)

Canvas canvas = new Canvas(bmpSephia);
canvas.rotate(rotate);
Paint paint = new Paint();
paint.setAntiAlias(true);
canvas.drawBitmap(source, 0, 0, paint);

Or

BitmapDrawable bmdraw = new BitmapDrawable(bmpSephia);
bmdraw.setAntiAlias(true);
Canvas canvas = new Canvas(bmdraw.getBitmap());
canvas.rotate(rotate);
share|improve this answer
later i will try,then give the result – pengwang Aug 12 '11 at 10:54
i try your methods,it is no useful – pengwang Aug 12 '11 at 12:09

i have used @user7777 methods ,and modify Paint paint = new Paint(); paint.setAntiAlias(true); then rotate the center of the image rotate ,the image-deformation is changed little alos i look at rotate image in around its center point in canvas

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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