//オプションの宣言 BitmapFactory.Options option = new BitmapFactory.Options(); //10分の1のサイズで取り込む option.inSampleSize = 10; String image_path = "ローカルの画像パス" Bitmap image_data = BitmapFactory.decodeFile(image_path, option);