我試圖將jpg圖像插入到PDF中。一些JPG圖片可以正常工作,但在某些情況下,我會遇到以下異常。在使用itext將jpg圖像寫入pdf格式時讀取JPG異常時的早熟EOF
java.io.IOException: Premature EOF while reading JPG.
at com.itextpdf.text.Jpeg.processParameters(Jpeg.java:218)
at com.itextpdf.text.Jpeg.<init>(Jpeg.java:117)
at com.itextpdf.text.Image.getInstance(Image.java:279)
at com.itextpdf.text.Image.getInstance(Image.java:241)
at com.itextpdf.text.Image.getInstance(Image.java:364)
以下是我正在使用的代碼。
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Image;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.PdfWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class ImagesNextToEachOther {
public static final String DEST = "/home/Documents/pdftest/hello.pdf";
public static final String IMG1 = "/home/Documents/pdftest/2.jpg";
public static void main(String[] args) throws IOException,
DocumentException {
File file = new File(DEST);
file.getParentFile().mkdirs();
new ImagesNextToEachOther().createPdf(DEST);
}
public void createPdf(String dest) throws IOException, DocumentException {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(100);
table.addCell(createImageCell(IMG1));
document.add(table);
document.close();
}
public static PdfPCell createImageCell(String path) throws DocumentException, IOException {
Image img = Image.getInstance(path);
PdfPCell cell = new PdfPCell(img, true);
return cell;
}
}
我在上面的代碼中出現以下行錯誤。
Image img = Image.getInstance(path);
path
是圖像的完整路徑。
我發現SO
Premature EOF while reading JPG using itext
Failure to read JPEG file from byte[]
類似的問題,但這並沒有解決我的問題。
這裏有一個鏈接,例如圖像
https://dl.dropboxusercontent.com/u/46349359/image.jpg
上傳導致異常的JPG文件之一。我希望它以一種非常微妙的方式被打破。 –
@AmedeeVanGasse用示例圖像更新了問題。 – ashishjmeshram