1

画像トリミングのズームイン サイズを修正したい.これを行うには?私はたくさん見つけて、たくさん試しましたが、まだ適切な解決策を得ることができません.トリミングされた画像はズームしすぎてぼやけています.誰か助けてください.私のこの問題.私のコードは.

intent.putExtra("crop", "true");
        intent.putExtra("outputX", 300);
        intent.putExtra("outputY", 300);
        intent.putExtra("aspectX", 1);
        intent.putExtra("aspectY", 1);
        intent.putExtra("scale", false);
        intent.putExtra("return-data", true);
4

1 に答える 1

0

このようにしてみてください

intent.putExtra("outputX", 200); //Set this to define the max size of the output bitmap
intent.putExtra("outputY", 200); //Set this to define the max size of the output bitmap
intent.putExtra("aspectX", 1); //Set this to define the X aspect ratio of the shape
intent.putExtra("aspectY", 1); //Set this to define the Y aspect ratio of the shape

このリンクを確認してください

于 2013-01-21T11:39:35.017 に答える