ImageUtils-图片工具类
一个日常项目中经常要用到的工具类,直接复制到项目中使用。
更新于:2015-08-10
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Matrix;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class ImageUtils {
/**
* 获取固定高度宽度的Bitmap。
*
* @param src 原Bitmap
* @param width 指定新的Bitmap宽度
* @param height 指定新的Bitmap高度
*/
public static Bitmap getBitmapWithCustomSize(Bitmap src, int width, int height) {
if (src == null) return null;
Bitmap bmp = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bmp);
Matrix matrix = new Matrix();
matrix.setScale(1.0f * width / src.getWidth(), 1.0f * height / src.getHeight());
canvas.drawBitmap(src, matrix, null);
return bmp;
}
/**
* 保存一张图片。
*
* @param path 保存图片的路径。如:/mnt/sdcard/abc/abc.jpg
* @throws IOException
*/
public static boolean saveBitmap(Bitmap bitmap, String path) throws IOException {
if (bitmap == null) return false;
File file = new File(path);
if (!file.exists()) file.createNewFile();
FileOutputStream fos = null;
try {
fos = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
} catch (IOException e) {
throw e;
} finally {
if (fos != null) fos.close();
}
return true;
}
}
版权声明:本文为博主原创文章,转载请注明原地址。
时间: 2024-10-04 17:07:39