org.sejda.impl.icepdf.component.PdfToBufferedImageProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sejda-icepdf Show documentation
Show all versions of sejda-icepdf Show documentation
Package containing tasks implemented using ICEpdf
/*
* Created on 21/set/2011
* Copyright 2011 by Andrea Vacondio ([email protected]).
*
* Licensed 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.sejda.impl.icepdf.component;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import org.icepdf.core.pobjects.Document;
import org.icepdf.core.pobjects.PDimension;
import org.icepdf.core.pobjects.Page;
import org.icepdf.core.util.GraphicsRenderingHints;
import org.sejda.model.parameter.image.AbstractPdfToImageParameters;
/**
* ICEpdf component providing a conversion method for a {@link Document} page to a {@link BufferedImage}. current thread.
*
* @author Andrea Vacondio
*
*/
public final class PdfToBufferedImageProvider {
private PdfToBufferedImageProvider() {
// hide
}
/**
* Converts the given {@link Document} page to a {@link BufferedImage}
*
* @param document
* @param page
* @param parameters
* @return the corresponding {@link BufferedImage}
*/
public static BufferedImage toBufferedImage(Document document, int page, AbstractPdfToImageParameters parameters) {
Page currentPage = document.getPageTree().getPage(page);
currentPage.init();
PDimension pageDimensions = currentPage.getSize(0, parameters.getUserZoom());
BufferedImage currentImage = parameters.getOutputImageColorType().createBufferedImage(
(int) pageDimensions.getWidth(), (int) pageDimensions.getHeight());
Graphics2D g = currentImage.createGraphics();
currentPage.paint(g, GraphicsRenderingHints.PRINT, Page.BOUNDARY_CROPBOX, 0, parameters.getUserZoom());
g.dispose();
return currentImage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy