4

私は、カメラから画像をキャプチャして pdf を作成する 1 つのアプリケーションを作成しています。

でも画質はイマイチ。そこで、画像の明るさとコントラストを設定したいと思います。

  1. Androidでカメラからキャプチャした後、画像の明るさとコントラストを上げる方法はありますか?

  2. トリミング時に画像をキャプチャしてpdfで表示した後、画像の下部が切り取られました。

このアプリケーションで pdf を使用するために、iText.jar (5.0.6) を使用しました。

4

1 に答える 1

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));
于 2011-08-10T09:11:32.367 に答える