org.apache.camel.component.pdf.text.DefaultWriteStrategy Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.pdf.text;
import java.io.IOException;
import java.util.Collection;
import org.apache.camel.component.pdf.PdfConfiguration;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
import org.apache.pdfbox.pdmodel.PDPageContentStream;
/**
* Writes given lines to PDF document. If document already contains some text then new text will be appended
* to new page.
*/
public class DefaultWriteStrategy implements WriteStrategy {
private final PdfConfiguration pdfConfiguration;
public DefaultWriteStrategy(PdfConfiguration pdfConfiguration) {
this.pdfConfiguration = pdfConfiguration;
}
@Override
public PDDocument write(Collection lines, PDDocument document) throws IOException {
PDPage page = new PDPage(pdfConfiguration.getPageSize());
document.addPage(page);
float x = pdfConfiguration.getMarginLeft();
float y = page.getMediaBox().getHeight() - pdfConfiguration.getMarginTop();
float averageFontHeight = PdfUtils.getAverageFontHeight(pdfConfiguration.getFont(),
pdfConfiguration.getFontSize());
float lineSpacing = averageFontHeight * 2;
PDPageContentStream contentStream = initializeContentStream(document, page);
for (String line : lines) {
writeLine(x, y, line, contentStream);
y -= lineSpacing;
if (goToNextPage(y)) {
contentStream.close();
page = new PDPage(pdfConfiguration.getPageSize());
document.addPage(page);
contentStream = initializeContentStream(document, page);
y = page.getMediaBox().getHeight() - pdfConfiguration.getMarginTop();
}
}
contentStream.close();
return document;
}
private boolean goToNextPage(float y) {
return y < pdfConfiguration.getMarginBottom();
}
private void writeLine(float x, float y, String currentLine, PDPageContentStream contentStream) throws IOException {
contentStream.beginText();
contentStream.moveTextPositionByAmount(x, y);
contentStream.drawString(currentLine);
contentStream.endText();
}
private PDPageContentStream initializeContentStream(PDDocument document, PDPage page) throws IOException {
PDPageContentStream contentStream = new PDPageContentStream(document, page);
contentStream.setFont(pdfConfiguration.getFont(), pdfConfiguration.getFontSize());
return contentStream;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy