1

我正在使用 apache poi 库在我的 java 程序中制作一个 ppt 文件。

为了插入元素,我将元素添加到 Document 对象。

添加顺序如下。

Picture1 -> rectangle1 -> Picture2 -> rectangle2

但是,所有图片都是输出 ppt 文件中的所有矩形。

如何设置元素的z顺序,例如添加顺序?

4

1 回答 1

1

好吧,这就是你可以做的。如您所见,添加的顺序是 Rectangle1、Picture、Rectangle2。并且尊重 z 顺序(我们可以看到所有 Rectangle2,但 Rectangle1 部分​​隐藏在图像后面):

import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.poi.hslf.model.PPGraphics2D;
import org.apache.poi.hslf.model.Picture;
import org.apache.poi.hslf.model.ShapeGroup;
import org.apache.poi.hslf.model.Slide;
import org.apache.poi.hslf.usermodel.SlideShow;

public class PowerPointTest {

    public static void main( String[] args ) {

        SlideShow slideShow = new SlideShow();
        Slide slide = slideShow.createSlide();

        try {
            // Rectangle1 (partly hidden)
            fillRectangle( slide, Color.blue, 20, 20, 300, 300 );

            // Image
            int index = slideShow.addPicture(new File("IMG_8499.jpg"), Picture.JPEG);
            Picture picture = new Picture(index);
            picture.setAnchor(new Rectangle( 50, 50, 300, 200 ));
            slide.addShape(picture);

            // Rectangle2 (all visible)
            fillRectangle( slide, Color.yellow, 250, 150, 50, 10 );


            FileOutputStream out = new FileOutputStream( "z-order.ppt" );
            slideShow.write( out );
            out.close();
        } catch ( FileNotFoundException e ) {
            e.printStackTrace();
        } catch ( IOException e ) {
            e.printStackTrace();
        }
    }

private static void fillRectangle( Slide slide, Color color, int x, int y, int width, int height ) {
        // Objects are drawn into a shape group, so we need to create one
        ShapeGroup group = new ShapeGroup();
        // Define position of the drawing inside the slide
        Rectangle bounds = new Rectangle(x, y, width, height);

        group.setAnchor(bounds);
        slide.addShape(group);

        // Drawing a rectangle
        Graphics2D graphics = new PPGraphics2D(group);
        graphics.setColor(color);
        graphics.fillRect(x, y, width, height); 
    }
}

看看这个教程。如果您不仅需要使用线条绘制矩形,还需要添加带有文本单元格的表格,请参见此处的示例。希望能帮助到你!

于 2014-07-26T13:15:02.287 回答