android图片缩放

阅读更多
1、关键代码
//R.drawable.test为当前工程中一张图片
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
R.drawable.test);
FileOutputStream fos = null;
try
{
File file = new File("/mnt/sdcard/testfile");
if (!file.exists())
{
file.mkdir();
}
fos = new FileOutputStream("/mnt/sdcard/testfile/test.jpg");
// Bitmap.CompressFormat.PNG
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
} catch (FileNotFoundException e)
{
e.printStackTrace();
}
2、权限


3、附上最近写的一个小应用,对图片进行缩放后在本地生成新图片
  • 图片缩放.apk.zip (96.2 KB)
  • 下载次数: 0

你可能感兴趣的:(android)