1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Image bag = Image.getInstance("c:\\4.png");
// bag.setAlignment(Image.ALIGN_CENTER);
// bag.setAlignment(Image.UNDERLYING);
//L'image est 795/711 width height
RtfShapePosition position = new RtfShapePosition(16860, 0, 11895,6360);//top left right bottom (2000, 6000, 10500, 4500)//16900, 0, 11895,6400)
position.setShapeBelowText(true);
RtfShape shape = new RtfShape(RtfShape.SHAPE_FREEFORM, position);
//shape.setInTable(true);
//shape.setWrapping(RtfShape.SHAPE_WRAP_LEFT);
//shape.setWrapping(RtfShape.SHAPE_WRAP_BOTH);
shape.setProperty(new RtfShapeProperty(
RtfShapeProperty.PROPERTY_IMAGE, bag));
//bag.scalePercent(0, 0);
document.add(shape); |
Partager