我正在尝试使用iText库将图像转换为pdf。当我使用电话目录中的图像时,它可以正常工作,但是当我使用url(firebase数据库/存储)时,它将给出错误。 如何使用iText将网址图片转换为pdf或如何将网址解析为iText图片对象?
try {
FileOutputStream fos = new FileOutputStream(outpath);
PdfWriter writer = PdfWriter.getInstance(document, fos);
writer.open();
document.open();
document.add(Image.getInstance("url...");
document.close();
writer.close();
} catch (Exception e) {
e.printStackTrace();
}