jpgイメージをPDFに挿入しようとしています。一部のjpg画像は正常に動作しますが、例外的に次のような場合があります。itextを使用してpdfにjpgイメージを書き込んでいるときに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[]
に同様の質問を見つけました。しかし、これは私の問題を解決していませんでした。 Amedeeはすでに彼のコメントで説明したようにここで
は、このような画像の1
https://dl.dropboxusercontent.com/u/46349359/image.jpg
例外を発生させるJPGファイルの1つをアップロードします。私はそれが非常に微妙な方法で壊れていると思います。 –
@AmedeeVanGasseはサンプル画像で質問を更新しました。 – ashishjmeshram