从android中的可绘制图像创建Image实例

前端之家收集整理的这篇文章主要介绍了从android中的可绘制图像创建Image实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用iTextG jar创建数字签名应用程序,在签名字段iText上添加水印

appearance.setImage(Image.getInstance(signedImagePath));

需要一个水印图像的路径,我想使用android的drawable文件夹中的图像,请建议我,我没有得到如何从drawable创建图像实例,建议是否有任何其他选项?

最佳答案
你使用像这样的ImageInstance.

 Bitmap bitmap = BitmapFactory.decodeResource(getBaseContext().getResources(),R.drawable.yourimage);
    bitmap.compress(Bitmap.CompressFormat.JPEG,100,stream);
    Image myImg = Image.getInstance(stream.toByteArray());

希望这有帮助.

原文链接:https://www.f2er.com/android/431019.html

猜你在找的Android相关文章