Android图片缩放方法(2)

File file=new File("/sdcard/feng.png");      try {          FileOutputStream out=new FileOutputStream(file);          if(bitmap.compress(Bitmap.CompressFormat.PNG, 100, out)){              out.flush();              out.close();          }      catch (FileNotFoundException e) {          // TODO Auto-generated catch block           e.printStackTrace();      catch (IOException e) {          // TODO Auto-generated catch block           e.printStackTrace();      }  

OK,这样就把图片保存在/sdcard/feng.png这个文件里面了,呵呵。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://127.0.0.1/wyyfzx.html