手机端打水印(文字和图片)使用的是Bitmap、Matrix和Canvas类的一些方法, 可以实现拉伸、旋转、位移等等效果。 原理很简单, 就是在画布Canvas上绘制图形、图片、文字等等, 得到你想要的效果图片。
百度搜索图片打水印有很多结果, 没找到斜着打水印的代码,有很多公司都要求上图的效果, 所以写着玩玩。
<pre>
/**
* 添加全屏斜着45度的文字
*/
public static Bitmap drawCenterLable(Context context, Bitmap bmp, String text) {
float scale = context.getResources().getDisplayMetrics().density;
//创建一样大小的图片
Bitmap newBmp = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), Config.ARGB_8888);
//创建画布
Canvas canvas = new Canvas(newBmp);
canvas.drawBitmap(bmp, 0, 0, null); //绘制原始图片
canvas.save();
canvas.rotate(45); //顺时针转45度
Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
paint.setColor(Color.argb(50, 255, 255, 255)); //白色半透明
paint.setTextSize(100 * scale);
paint.setDither(true);
paint.setFilterBitmap(true);
Rect rectText = new Rect(); //得到text占用宽高, 单位:像素
paint.getTextBounds(text, 0, text.length(), rectText);
double beginX = (bmp.getHeight()/2 - rectText.width()/2) ** 1.4; //45度角度值是1.414
double beginY = (bmp.getWidth()/2 - rectText.width()/2) * 1.4;
canvas.drawText(text, (int)beginX, (int)beginY, paint);
canvas.restore();
return newBmp;
}
</pre>
使用44KB的png图片验证效率:
<pre>
long begin = System.currentTimeMillis();
Bitmap destBmp = ImageUtil.drawCenterLable(this, sourBitmap, "某某公司专用");
long end = System.currentTimeMillis();
Log.d("brycegao", "打水印用时:" + (end-begin) + "毫秒");
mWartermarkImage.setImageBitmap(destBmp);</pre>
小米4手机输出: D/brycegao: 打水印用时:69毫秒
使用3M字节的jpg图片测试打水印,报OOM错误。
<pre>
java.lang.OutOfMemoryError: Failed to allocate a 467251212 byte allocation with 16767536 free bytes and 110MB until OOM
at dalvik.system.VMRuntime.newNonMovableArray(Native Method)
at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:613)
at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:446)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:469)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:501)</pre>
手机端使用Android原生方法打水印, 应该先将压缩分辨率, 避免OOM的情况, 但是影响清晰度; 大部分app都是将原图传到服务器, 在后台打水印。
因为原生方法有分辨率和内存限制, 听说七牛的图片库(支持打水印)很好用, 看看是否可以落地到各种配置的Android手机中。
网友评论