Java PowerPoint에 워터마크 추가/삭제
아래 준비
1.E-iceblue 공식 사이트에서 Free Spire. Presentation for Java 무료 버전을 다운로드합니다.
2. IDE를 시작하여 새 프로젝트를 만든 다음 설치된 파일에 있던 적절한 Spire.Presentation.jar을 참조에 추가합니다.
원본 파일
문자 워터마크
import com.spire.presentation.*;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.*;
import java.awt.geom.Rectangle2D;
public class watermark {
public static void main(String[] args) throws Exception {
//presentation objectを作成します。
Presentation presentation = new Presentation();
presentation.loadFromFile("C:\\Users\\Administrator\\Desktop\\Sample.pptx");
//ウォーターマークの幅と長さを設定します。
int width= 400;
int height= 300;
//長方形のフィールドを作成します。
Rectangle2D.Double rect = new Rectangle2D.Double((presentation.getSlideSize().getSize().getWidth() - width) / 2,
(presentation.getSlideSize().getSize().getHeight() - height) / 2, width, height);
//長方形のフィールドにshapeを追加します。
IAutoShape shape = presentation.getSlides().get(0).getShapes().appendShape(ShapeType.RECTANGLE, rect);
/shapeのデザインを配置します。
shape.getFill().setFillType(FillFormatType.NONE);
shape.getShapeStyle().getLineColor().setColor(Color.white);
shape.setRotation(-45);
shape.getLocking().setSelectionProtection(true);
shape.getLine().setFillType(FillFormatType.NONE);
//shapeにテキストを追加します。
shape.getTextFrame().setText("複写禁止");
PortionEx textRange = shape.getTextFrame().getTextRange();
//ウォーターマークのデザインを配置します。
textRange.getFill().setFillType(FillFormatType.SOLID);
textRange.getFill().getSolidColor().setColor(Color.pink);
textRange.setFontHeight(50);
//保存します。
presentation.saveToFile("output/result.pptx", FileFormat.PPTX_2010);
}
}
완성 예
이미지 워터마크
import com.spire.presentation.*;
import com.spire.presentation.drawing.*;
import javax.imageio.ImageIO;
import java.io.File;
public class addImageWatermark {
public static void main(String[] args) throws Exception {
//文書をロードします。
Presentation presentation = new Presentation();
presentation.loadFromFile("Sample.pptx");
//画像のウォーターマークを取得します。
File file =new File("logo.png");
IImageData image = presentation.getImages().append(ImageIO.read(file));
// スライドの背景属性を取得し、画像の塗りつぶしを配置します。
presentation.getSlides().get(0).getSlideBackground().setType(BackgroundType.CUSTOM);
presentation.getSlides().get(0).getSlideBackground().getFill().setFillType(FillFormatType.PICTURE);
presentation.getSlides().get(0).getSlideBackground().getFill().getPictureFill().setFillType(PictureFillType.STRETCH);
presentation.getSlides().get(0).getSlideBackground().getFill().getPictureFill().getPicture().setEmbedImage(image);
//保存します
presentation.saveToFile("addImageWatermark.pptx";, FileFormat.PPTX_2013);
}
}
완성 예
워터마크를 삭제하는 코드
import com.spire.presentation.*;
import com.spire.presentation.drawing.*;
public class removeTextOrImageWatermark {
public static void main(String[] args) throws Exception {
//ドキュメントをロードします。
Presentation presentation = new Presentation();
presentation.loadFromFile("Sample.pptx");
//文本のウォーターマークを削除します。
for (int i = 0; i < presentation.getSlides().getCount(); i++)
{
for (int j = 0; j < presentation.getSlides().get(i).getShapes().getCount(); j++)
{
if (presentation.getSlides().get(i).getShapes().get(j) instanceof IAutoShape)
{
IAutoShape shape = (IAutoShape)presentation.getSlides().get(i).getShapes().get(j);
if (shape.getTextFrame().getText().contains("E-iceblue"))
{
presentation.getSlides().get(i).getShapes().remove(shape);
}
}
}
}
//画像のウォーターマークを削除します。
for (int i = 0; i < presentation.getSlides().getCount(); i++)
{
presentation.getSlides().get(i).getSlideBackground().getFill().setFillType(FillFormatType.NONE);
}
//保存します。
presentation.saveToFile("removeTextOrImageWatermark.pptx";, FileFormat.PPTX_2013);
}
}
Reference
이 문제에 관하여(Java PowerPoint에 워터마크 추가/삭제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/iceblue/items/f8104a90895a5b7d8787텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)