Showing posts with label Compress Image File. Show all posts
Showing posts with label Compress Image File. Show all posts

Tuesday, October 18, 2011

Android Compress Image File


f = new FileInputStream("path");

scale=2;

BitmapFactory.Options op=new BitmapFactory.Options();

op.inSampleSize=scale;

Bitmap bitmap=BitmapFactory.decodeStream(f,null,op);