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 am using the following code snippet to create a bitmap with text.

Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); 
paint.setStyle(Style.FILL);
paint.setColor(fontColor);
paint.setTextSize(fontSize);
canvas.drawText("My Text", x, y, paint);

Here's the catch. How do I determine the size of the Bitmap to use in the canvas beforehand? For instance if I want a bitmap with "Hello World!" on it, I want to find the width and height of it even before I draw the text on the canvas.

share|improve this question
check here: stackoverflow.com/questions/4552833/… – forgivegod Jan 19 '12 at 15:27
how about converting bitmap into drawable and then getting drawables width and height?? – android_hungry Jan 19 '12 at 16:09

2 Answers

up vote 2 down vote accepted

You can tyr this:

Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); 

Rect bounds = new Rect();

paint.setStyle(Style.FILL);
paint.setColor(fontColor);
paint.setTextSize(fontSize);

paint.getTextBounds("My Text", 0, "My Text".length(), bounds);

int width = bounds.width();
int height = bounds.height();

canvas.drawText("My Text", x, y, paint);
share|improve this answer

Try this, it loads the bitmap, then gets the heigth and width, then you just have to draw it. Replace bitmap with your image name

bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bitmap);
bitmapHeigth = bitmap.getHeigth();
bitmapWidth = bitmap.getWidth();
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.