我正在制作一个应用程序,在其中我从相机捕获图像并从中制作pdf ..
但是图像质量很差。所以我想设置图像的亮度和对比度.....1)在Android中从相机捕获后,有没有办法增加图像的亮度和对比度?
2)在我裁剪图像然后以pdf显示图像后,图像的下半部分被剪切。
对于此应用程序中的pdf用法,我使用了iText.jar(5.0.6)。
请帮忙。
干杯
-Bhavik
答案 0 :(得分:1)
要在生成的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));