本文實例講述了Android圖片處理的方法。分享給大家供大家參考,具體如下:
package cn.szbw.util;
import Android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
public class Utils {
/***
* 加載本地圖片
* @param context:主運行函數實例
* @param bitAdress:圖片地址,一般指向R下的drawable目錄
* @return
*/
public final Bitmap CreatImage(Context context, int bitAdress) {
Bitmap bitmaptemp = null;
bitmaptemp = BitmapFactory.decodeResource(context.getResources(),bitAdress);
return bitmaptemp;
}
//2.圖片平均分割方法,將大圖平均分割為N行N列,方便用戶使用
/***
* 圖片分割
* @param g
* :畫布
* @param paint
*:畫筆
* @param imgBit
*:圖片
x
*:X軸起點坐標
* @param y
*:Y軸起點坐標
* @param w
* :單一圖片的寬度
* @param h
*:單一圖片的高度
* @param line
*:第幾列
* @param row
* :第幾行
*/
public final void cuteImage(Canvas g, Paint paint, Bitmap imgBit, int x,
int y, int w, int h, int line, int row) {
g.clipRect(x, y, x + w, h + y);
g.drawBitmap(imgBit, x - line * w, y - row * h, paint);
g.restore();
}
//3.圖片縮放,對當前圖片進行縮放處理
/***
* 圖片的縮放方法
* * @param bgimage
*:源圖片資源
* @param newWidth
*:縮放后寬度
* @param newHeight
*:縮放后高度
* @return
*/
public Bitmap zoomImage(Bitmap bgimage, int newWidth, int newHeight) {
// 獲取這個圖片的寬和高
int width = bgimage.getWidth();
int height = bgimage.getHeight();
// 創建操作圖片用的matrix對象
Matrix matrix = new Matrix();
// 計算縮放率,新尺寸除原始尺寸
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
// 縮放圖片動作
matrix.postScale(scaleWidth, scaleHeight);
Bitmap bitmap = Bitmap.createBitmap(bgimage, 0, 0, width, height,
matrix, true);
return bitmap;
}
//4.繪制帶有邊框的文字,一般在游戲中起文字的美化作用
/**
* 繪制帶有邊框的文字
* @param strMsg
* :繪制內容
* @param g
*:畫布
* @param paint
*:畫筆
* @param setx
*:X軸起始坐標
* @param sety
*:Y軸的起始坐標
* @param fg
*:前景色
* @param bg
* :背景色
*/
public void drawText(String strMsg, Canvas g, Paint paint, int setx,
int sety, int fg, int bg) {
paint.setColor(bg);
g.drawText(strMsg, setx + 1, sety, paint);
g.drawText(strMsg, setx, sety - 1, paint);
g.drawText(strMsg, setx, sety + 1, paint);
g.drawText(strMsg, setx - 1, sety, paint);
paint.setColor(fg);
g.drawText(strMsg, setx, sety, paint);
g.restore();
}
}
希望本文所述對大家Android程序設計有所幫助。