多くのアプリケーションでは、ギャラリーから選択した画像を共有できます。
元の画像ファイルをアップロードしますか? どれが1〜3 mbのようですか?それとも彼らは処理しますか?
いずれにせよ、ファイルパスから画像を取得し、解像度を下げてサイズを縮小し、別の場所に保存してアップロードを試みるにはどうすればよいですか?
私は試した:
Bitmap photo = decodeSampledBitmapFromFile(filePath, DESIRED_WIDTH,
DESIRED_HEIGHT);
FileOutputStream out = new FileOutputStream(filePath);
photo.compress(Bitmap.CompressFormat.JPEG, 100, out);
public static Bitmap decodeSampledBitmapFromFile(String path, int reqWidth,
int reqHeight) {
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);
final int height = options.outHeight;
final int width = options.outWidth;
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
int inSampleSize = 1;
if (height > reqHeight) {
inSampleSize = Math.round((float) height / (float) reqHeight);
}
int expectedWidth = width / inSampleSize;
if (expectedWidth > reqWidth) {
inSampleSize = Math.round((float) width / (float) reqWidth);
}
options.inSampleSize = inSampleSize;
options.inJustDecodeBounds = false;
return BitmapFactory.decodeFile(path, options);
}
しかし、これは彼らの正しいやり方ですか?ここで提案する回答を見たのでcompression operation takes rather big amount of time