问题描述
||
我正在制作一个应用程序,在该应用程序中,我从相机捕获图像并制作出pdf文件。
但是图像质量很差。所以我想设置图像的亮度和对比度。
1)从Android中的相机捕获后,有什么方法可以增加图像的亮度和对比度吗?
2)裁剪后捕获图像,然后以pdf格式显示后,图像的下部已被剪切。
对于此应用程序中的pdf用法,我使用了iText.jar(5.0.6)。
请帮忙。
干杯
-巴维克
解决方法
要使完整的图像显示在pdf中,请尝试对图像应用\'scaleAbsolute \'。
File newFile = new File(pdfPath);
newFile.createNewFile();
FileOutputStream pdfFile = new FileOutputStream(newFile);
Document document = new Document();
PdfWriter.getInstance(document,pdfFile);
ocument.open();
Rectangle rectangle = document.getPageSize();
Image image = Image.getInstance(imagePath);
image.scaleAbsolute((rectangle.getWidth() - 75.0f),(rectangle.getHeight() - 75.0f));