本篇文章為大家展示了Android中怎么給圖片添加水印,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序設(shè)計、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了蒲城免費(fèi)建站歡迎大家使用!
Android 圖片添加水印的實現(xiàn)方法
手機(jī)端打水?。ㄎ淖趾蛨D片)使用的是Bitmap、Matrix和Canvas類的一些方法, 可以實現(xiàn)拉伸、旋轉(zhuǎn)、位移等等效果。 原理很簡單, 就是在畫布Canvas上繪制圖形、圖片、文字等等, 得到你想要的效果圖片。
/* 添加全屏斜著45度的文字 / public static Bitmap drawCenterLable(Context context, Bitmap bmp, String text) { float scale = context.getResources().getDisplayMetrics().density; //創(chuàng)建一樣大小的圖片 Bitmap newBmp = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), Config.ARGB_8888); //創(chuàng)建畫布 Canvas canvas = new Canvas(newBmp); canvas.drawBitmap(bmp, 0, 0, null); //繪制原始圖片 canvas.save(); canvas.rotate(45); //順時針轉(zhuǎn)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手機(jī)輸出: D/brycegao: 打水印用時:69毫秒
使用3M字節(jié)的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)
上述內(nèi)容就是Android中怎么給圖片添加水印,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。