我需要将图像(主要是JPEG)直接转换为PDF文档的PDF页面。
可能是图像的大小不同。
每个PDF页面应该具有与图像相同的精确尺寸。
因此每个页面只包含全分辨率的图像。
如何实现这一点,一个页面被设置为图像/内容的尺寸?
因为我看到PDF文件有不同的页面大小和方向,但如何用PDFbox做到这一点?
注意(Valentin Waeselynck的评论:从PDFBox 2+开始,您现在将使用PDImagexObject.CreateFromFile
或PDImagexObject.CreateFromFile
或JPEGFactory.CreateFromStream
。注意,LosslessFactory.CreateFromImage
的空间效率要低得多。请参阅:https://PDFBox.apache.org/2.0/migration.html#working-with-images
PDFBox 1的解决方案:
我已经用下面的代码解决了这个问题:
PDDocument document = new PDDocument();
InputStream in = new FileInputStream(someImage);
BufferedImage bimg = ImageIO.read(in);
float width = bimg.getWidth();
float height = bimg.getHeight();
PDPage page = new PDPage(new PDRectangle(width, height));
document.addPage(page);
PDXObjectImage img = new PDJpeg(document, new FileInputStream(someImage));
PDPageContentStream contentStream = new PDPageContentStream(document, page);
contentStream.drawImage(img, 0, 0);
contentStream.close();
in.close();
document.save("test.pdf");
document.close();
为了完整起见,请参阅PDFBox 2+API的当前PDFBox示例(https://svn.apache.org/repos/asf/PDFBox/trunk/examples/src/main/java/org/apache/PDFBox/examples/pdmodel/addimageTopdf.java)
/*
* 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.pdfbox.examples.pdmodel;
import java.io.File;
import java.io.IOException;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.PDPage;
import org.apache.pdfbox.pdmodel.PDPageContentStream;
import org.apache.pdfbox.pdmodel.PDPageContentStream.AppendMode;
import org.apache.pdfbox.pdmodel.graphics.image.PDImageXObject;
/**
* This is an example that creates a reads a document and adds an image to it..
*
* The example is taken from the pdf file format specification.
*
* @author Ben Litchfield
*/
public class AddImageToPDF
{
/**
* Add an image to an existing PDF document.
*
* @param inputFile The input PDF to add the image to.
* @param imagePath The filename of the image to put in the PDF.
* @param outputFile The file to write to the pdf to.
*
* @throws IOException If there is an error writing the data.
*/
public void createPDFFromImage( String inputFile, String imagePath, String outputFile )
throws IOException
{
try (PDDocument doc = PDDocument.load(new File(inputFile)))
{
//we will add the image to the first page.
PDPage page = doc.getPage(0);
// createFromFile is the easiest way with an image file
// if you already have the image in a BufferedImage,
// call LosslessFactory.createFromImage() instead
PDImageXObject pdImage = PDImageXObject.createFromFile(imagePath, doc);
try (PDPageContentStream contentStream = new PDPageContentStream(doc, page, AppendMode.APPEND, true, true))
{
// contentStream.drawImage(ximage, 20, 20 );
// better method inspired by http://stackoverflow.com/a/22318681/535646
// reduce this value if the image is too large
float scale = 1f;
contentStream.drawImage(pdImage, 20, 20, pdImage.getWidth() * scale, pdImage.getHeight() * scale);
}
doc.save(outputFile);
}
}
/**
* This will load a PDF document and add a single image on it.
* <br>
* see usage() for commandline
*
* @param args Command line arguments.
*/
public static void main(String[] args) throws IOException
{
AddImageToPDF app = new AddImageToPDF();
if( args.length != 3 )
{
app.usage();
}
else
{
app.createPDFFromImage( args[0], args[1], args[2] );
}
}
/**
* This will print out a message telling how to use this example.
*/
private void usage()
{
System.err.println( "usage: " + this.getClass().getName() + " <input-pdf> <image> <output-pdf>" );
}
}
问题内容: 我正在寻找一个Java库,该库可以获取图像(PNG)并创建PDF。或直接从已绘制的Java面板中创建PDF。 问题答案: 您可以使用Gnostice PDFOne for Java(http://www.gnostice.com/PDFOne_Java.asp)实现此目的。 在下面的代码片段中找到可从PNG图像创建PDF文档的代码。 要从JPanel创建BufferedImage,可以
我正在寻找一个Java库,将可以采取一个图像(PNG)和创建一个PDF。或者直接从已绘制的java面板创建PDF。
对于演示节目,我被要求提供一个powerpoint文件。然而,我更喜欢LaTeX和Beamer来创建我的幻灯片。所以我有了创建一个自动脚本的想法,从我的PDF文件中提取图像并创建一个PPT文件。 我是Automator新手,但通过谷歌搜索,我很容易就找到了: 询问查找器项目。 将 PDF 页面呈现为图像。( 分辨率 : 300) 创建PPT图片幻灯片 不幸的是,有一个问题 :图片不能完全填满幻灯片
我想创建一个与自定义信息融合的页面。 API-(POST)汇流/rest/API/content 我能够成功上传文本和图像。如果我对上传到某处的图像使用src, 然后这个图像在我新创建的合流页面上成功可见。 但是,如果我使用src作为数据uri, 然后它不会显示图像。 请注意,API不会抛出任何错误,但也不会显示图像。 工作: 不工作: 任何帮助都将不胜感激。 谢谢
问题内容: 我看过一些代码源,但是我不明白… 我使用Java 7 请, 如何将RGB (红色,绿色,蓝色) 字节数组 (或类似 格式 ) 转换为.PNG文件格式 ? 可能表示“ RGB像素”的数组中的示例: 重要方面: 我尝试仅从byte []“ 而不是 从以前的现有文件” 生成.PNG文件 现有的API有可能吗?;) 这是我的第一个代码: .... 错误: 找不到合适的方法 这里是 Jeremy
我在用iText7做游戏。净c#。我正在尝试在内存中创建一个多页PDF文档(n页数),其中源PDF文档只包含一页。 我可以用一页创建一个新文档,但无法根据需要创建额外的页面。我试过了 但我得到了一个ArgumentOutOfRange例外。。。索引超出范围。。。等 我试图关闭destPdfDoc,然后重新打开它,认为第二页直到我关闭它才被写入。但是当第二次打开destPdfDoc时,它没有页面。我