您好,登錄后才能下訂單哦!
本篇文章為大家展示了Android中怎么給圖片添加水印,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
Android 圖片添加水印的實現方法
手機端打水印(文字和圖片)使用的是Bitmap、Matrix和Canvas類的一些方法, 可以實現拉伸、旋轉、位移等等效果。 原理很簡單, 就是在畫布Canvas上繪制圖形、圖片、文字等等, 得到你想要的效果圖片。
/* 添加全屏斜著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; }
使用44KB的png圖片驗證效率:
long begin = System.currentTimeMillis(); Bitmap destBmp = ImageUtil.drawCenterLable(this, sourBitmap, "某某公司專用"); long end = System.currentTimeMillis(); Log.d("brycegao", "打水印用時:" + (end-begin) + "毫秒"); mWartermarkImage.setImageBitmap(destBmp);
小米4手機輸出: D/brycegao: 打水印用時:69毫秒
使用3M字節的jpg圖片測試打水印,報OOM錯誤。
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)
上述內容就是Android中怎么給圖片添加水印,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。