Word For Mac 15.36 Rotate Text 90

  1. Word For Mac 15.36 Rotate Text 90
  2. Word For Mac 15.36 Rotate Text 90 Degrees
  3. Word For Mac 15.36 Rotate Text 90 Degrees
Active6 years, 7 months ago

You can place the word into a text box, rotate the box 90 degrees left or right, then place the box as a floating object over the correct column. If you actually want to have the text look like the column on the left, that can be accomplished fairly directly. In Word for PC: Select the text box, select Layout > Rotate, and select More Rotation Options.From the Size tab, change the rotation angle to the angle you need.; In Word for Mac: Click the text box, click Shape Format > Arrange > Rotate > Rotate, and click More Rotation Options.From the Size tab, change the rotation angle so the text points in the direction you need.

My question is not about how to rotate text with Java2D; I know how to do that. What I don't know is how to make the rotated text 'look good.' For example, if you create a text box in PowerPoint and rotate it, the text appears sharp and clear no matter the rotation angle. However, text drawn with g2D.drawString() looks okay at 0 or 90 degrees but not so good at other angles. Is there a way to manipulate the text to clean or sharpen it up? If so, then if someone could point me to where look to learn how to do this I would be so thankful.

Below is a little program that illustrates what I'm talking about. The bigger font isn't too bad when rotated but still doesn't look very professional. The smaller font when rotated is terrible.

Bill Doss
Bill DossBill DossWord for mac 15.36 rotate text 90 degrees
3361 gold badge4 silver badges12 bronze badges

2 Answers

I once had a similar problem, and solved it by drawing the text with high precision to an image, then drawing the rotated image.

Word For Mac 15.36 Rotate Text 90

Here's the code:

sina72sina72
3,7182 gold badges27 silver badges34 bronze badges

I haven't got the time to test this but will the following code help?:

Word for mac 15.36 rotate text 90

Word For Mac 15.36 Rotate Text 90 Degrees

This will only work on Graphics2D. If you're using normal Graphics you can cast your Graphics object to the 2D version like so:

Let me know!Good luck

Word For Mac 15.36 Rotate Text 90 Degrees

Byron VoorbachByron Voorbach
2,4642 gold badges20 silver badges34 bronze badges

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