这个问题通常出现在 PdfConverter 尝试加载本地图像资源时。解决方法是将图片资源保存到应用程序的沙盒目录中,然后使用相对路径引用它们。 以下示例演示了如何加载本地图像资源并在 PDF 文档中显示它们:
File file = new File(context.getFilesDir(), "image.png");
FileOutputStream outputStream = new FileOutputStream(file);
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.image);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, outputStream);
outputStream.flush();
outputStream.close();
PdfDocument pdf = new PdfDocument();
PdfPage page = pdf.addPage(new PdfPageInfo.Builder(pageWidth, pageHeight, pageNumber).create());
Canvas canvas = page.getCanvas();
File file = new File(context.getFilesDir(), "image.png");
PdfBitmap bitmap = PdfBitmap.createFromFile(context, file);
canvas.drawBitmap(bitmap, x, y, null);
pdf.close();