iText gerar RTF

Alguem q já mexeu com iText para gerar arquivo RTF, já conseguiu formatar texto dentro de um RTFShape ?

Font blue =
				  FontFactory.getFont(
				    FontFactory.COURIER,
				    30,
				    Font.NORMAL, Color.BLUE);

RtfShape shape3 = new RtfShape(RtfShape.SHAPE_PICTURE_FRAME,
                    new RtfShapePosition(1700, 500, 10000, 3700));

shape3.setFont(blue);
			shape3.setShapeText("hfsldflsadflkdsa!");

mas o texto só aparece na cor preto sem tá formatado. Alguem tem alguma luz ?