こんにちは、pdf に画像を追加しようとしています。追加されていますが、ユーザー定義の幅と高さを設定できないという問題があります。XMLWorkerHelper
HTML コードを変換して PDF に書き込むために使用しています。
try {
String image="<img alt=\"Not Loading\" src=\"C:\\Users\\sathesh_S\\Desktop\\Itext\\football.jpg\" style=\"width: 50px; height: 75px\" />";
OutputStream file = new FileOutputStream(new File("C:\\Test.pdf"));
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, file);
document.open();
InputStream is = new ByteArrayInputStream(image.getBytes());
XMLWorkerHelper.getInstance().parseXHtml(writer, document, is);
document.close();
file.close();
}
catch (Exception e)
{
e.printStackTrace();
}
ここでは、幅と高さを 50 ピクセルと 75 ピクセルに設定しています。ただし、元の画像が PDF に追加されています。どうすればこれを修正できますか。