Converting ppt to png using Apache poi

后端 未结 1 555
轮回少年
轮回少年 2021-01-14 05:24

Hello I am trying to use the Apache Poi framework to convert each slide of a ppt to an individual png. The problem is that some slides are deformed. For instance there is a

1条回答
  •  抹茶落季
    2021-01-14 05:34

    For this to work we don't have to use:

    graphics.setPaint(Color.white);
    

    Instead use :

    graphics.setPaint(
        slideShow.getSlides()[0].getBackground().getFill().getForegroundColor()
    );
    

    0 讨论(0)
提交回复
热议问题