我正在使用iTextG jar创建数字签名应用程序,在签名字段iText上添加水印
appearance.setImage(Image.getInstance(signedImagePath));
需要一个水印图像的路径,我想使用android的drawable文件夹中的图像,请建议我,我没有得到如何从drawable创建图像实例,建议是否有任何其他选项?
最佳答案
你使用像这样的ImageInstance.
原文链接:https://www.f2er.com/android/431019.html Bitmap bitmap = BitmapFactory.decodeResource(getBaseContext().getResources(),R.drawable.yourimage);
bitmap.compress(Bitmap.CompressFormat.JPEG,100,stream);
Image myImg = Image.getInstance(stream.toByteArray());
希望这有帮助.