I've been looking for over a day for a sollution to this problem but nothing helps, even the answers here dont help me :/ And googles documentation on this doesnt explain anything..

I am simply trying to get a tankturret rotate in the direction of another object. The problem is that the bitmap is not rotated around a fixated point, but rather around the bitmaps 0,0.

Here is the code I am having troubles with:

  Matrix mtx = new Matrix();
  mtx.reset();
  mtx.preTranslate(-centerX, -centerY);
  mtx.setRotate((float)direction, -centerX, -centerY);
  mtx.postTranslate(pivotX, pivotY);
  Bitmap rotatedBMP = Bitmap.createBitmap(bitmap, 0, 0, spriteWidth, spriteHeight, mtx, true);
  this.bitmap = rotatedBMP;

The weird part is, it doesn't matter how I change the values within pre/postTranslate() and the float arguments in setRotaion do nothing either. Can someone please help and push me in the right direction? :)

link|improve this question
1  
I take it the above code is after several attempted variations. It seems like mtx.setRotate(dir, x, y) should do the trick by itself, without all the pre/post stuff. Also, you don't need to reset a freshly newed matrix. Its already the identity. – Mark Storer Dec 3 '10 at 21:53
feedback

5 Answers

I hope, following sequence of code would help you:

Bitmap targetBitmap = Bitmap.createBitmap(targetWidth, targetHeight, config);
Canvas canvas = new Canvas(targetBitmap);
Matrix matrix = new Matrix();
matrix.setRotate(mRotation,source.getWidth()/2,source.getHeight()/2);
canvas.drawBitmap(source, matrix, new Paint());

if you check following method from ~frameworks\base\graphics\java\android\graphics\Bitmap.java public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height, Matrix m, boolean filter) this would explain what it does with rotation and translate.

link|improve this answer
Can you do it with the Bitmap.createBitmap that takes a Matrix? How are you computing the targetWidth and targetHeight? Simple trig, I assume, but is there an "easier" way? – dpk Dec 3 '10 at 6:18
Please check the below answer, (Sorry,I couldn't add code in comments) – Sudar Nimalan Dec 4 '10 at 5:07
feedback

) I came back to this problem now that we are finalizing the game and I just thought to post what worked for me.

This is the method for rotating the Matrix:

this.matrix.reset();
this.matrix.setTranslate(this.floatXpos, this.floatYpos);
this.matrix.postRotate((float)this.direction, this.getCenterX(), this.getCenterY()); 

(this.getCenterX() is basically the bitmaps X position + the bitmaps width / 2)

And the method for Drawing the bitmap (called via a RenderManager Class):

canvas.drawBitmap(this.bitmap, this.matrix, null);

So it is prettey straight forward but I find it abit strange that I couldn't get it to work by setRotate followed by postTranslate. Maybe some knows why this doesn't work? Now all the bitmaps rotate properly but it is not without some minor decrease in bitmap quality :/

Anyways, thanks for your help!

link|improve this answer
Great worked for me. Thanks – Fernando Miguélez Nov 10 '11 at 11:50
feedback

You can also rotate the ImageView using a RotateAnimation:

RotateAnimation rotateAnimation = new RotateAnimation(from, to,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF,
                0.5f);
rotateAnimation.setInterpolator(new LinearInterpolator());
rotateAnimation.setDuration(ANIMATION_DURATION);
rotateAnimation.setFillAfter(true);

imageView.startAnimation(rotateAnimation);
link|improve this answer
You're answering the wrong question. He doesn't want to rotate the view, just a single bitmap within it. – Mark Storer Dec 3 '10 at 21:47
As i experienced, setFillAfter(bool) method not working as it expected to be on Android API lvl 11 and below. Therefore, developers are unable to use continuous rotation event on view objects, nor they obtain rotated versions of these views after rotation. So @Mark Storer , Macarse answered truly on logical point of view if you set animation duration with 0 or something close to 0. – Gökhan Barış Aker Mar 21 at 13:14
feedback

You can use something like following:


Matrix matrix = new Matrix();
matrix.setRotate(mRotation,source.getWidth()/2,source.getHeight()/2);
RectF rectF = new RectF(0, 0, source.getWidth(), source.getHeight());
matrix.mapRect(rectF);
Bitmap targetBitmap = Bitmap.createBitmap(rectF.width(), rectF.height(), config);
Canvas canvas = new Canvas(targetBitmap);
canvas.drawBitmap(source, matrix, new Paint());

link|improve this answer
feedback

Look at the sample from Google called Lunar Lander, the ship image there is rotated dynamically.

Lunar Lander code sample

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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