0

私はこのコードを使用しています:

Bitmap itemImage = reduceImageAtFilePathFromGallery(imageName);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
itemImage.compress(Bitmap.CompressFormat.PNG, 100, stream);

imageAnswer = Image.getInstance(stream.toByteArray());

private Bitmap reduceImageAtFilePathFromGallery(String filePath) {
    // Decode image size 
    BitmapFactory.Options o = new BitmapFactory.Options(); 
    o.inJustDecodeBounds = true; 
    BitmapFactory.decodeFile(filePath, o); 

    // The new size we want to scale to 
    final int REQUIRED_SIZE = 256; 

    // Find the correct scale value. It should be the power of 2. 
    int width_tmp = o.outWidth, height_tmp = o.outHeight; 
    int scale = 1; 
    while (true) { 
        if (width_tmp < REQUIRED_SIZE && height_tmp < REQUIRED_SIZE) 
            break; 
        width_tmp /= 2; 
        height_tmp /= 2; 
        scale *= 2; 
    } 

    // Decode with inSampleSize 
    BitmapFactory.Options o2 = new BitmapFactory.Options(); 
    o2.inSampleSize = scale; 
    Bitmap bitmap = BitmapFactory.decodeFile(filePath, o2); 
    return bitmap;
}

ただし画質は悪くなります。次に、以下のコードも試しました。

Image imageAnswer = getAndResizeImage(imageName);

private Image getAndResizeImage(String imageFilename){
    final File imageFile = new File(imageFilename);
    if (imageFile.exists()) {
        Bitmap b = null;
        try {
            File f = new File(imageFilename);
            b = BitmapFactory.decodeFile(f.getAbsolutePath());

            //calculate how many bytes our image consists of.
            int bytes = getSizeInBytes(b);

            ByteBuffer buffer = ByteBuffer.allocate(bytes); //Create a new buffer
            b.copyPixelsToBuffer(buffer); //Move the byte data to the buffer

            byte[] array = buffer.array(); //Get the underlying array containing the data.
            Image image = Image.getInstance(array);

            return image;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
    }

    return null;
}

そして、このエラーが発生します:

09-09 15:08:58.368: W/S

ystem.err(1385): java.io.IOException: バイト配列は認識されたイメージ形式ではありません。09-09 15:08:58.378: W/System.err(1385): com.itextpdf.text.Image.getInstance (Image.java:442) 09-09 で

このコード行で:

Image image = Image.getInstance(array);

iText を使用して PDF に高品質の画像を表示する方法はありますか?

4

1 に答える 1

1

PNG ではなく JPEG 圧縮形式を使用する

itemImage.compress(Bitmap.CompressFormat.JPEG, 100, stream);
于 2013-09-09T08:59:08.860 に答える