真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中如何給圖片添加水印-創(chuàng)新互聯(lián)

這篇文章主要介紹了Android中如何給圖片添加水印的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Android中如何給圖片添加水印文章都會(huì)有所收獲,下面我們一起來看看吧。

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比繁峙網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式繁峙網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋繁峙地區(qū)。費(fèi)用合理售后完善,十多年實(shí)體公司更值得信賴。

Android 圖片添加水印的實(shí)現(xiàn)方法

手機(jī)端打水印(文字和圖片)使用的是Bitmap、Matrix和Canvas類的一些方法, 可以實(shí)現(xiàn)拉伸、旋轉(zhuǎn)、位移等等效果。 原理很簡(jiǎ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); //順時(shí)針轉(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圖片驗(yàn)證效率:

long begin = System.currentTimeMillis();
Bitmap destBmp = ImageUtil.drawCenterLable(this, sourBitmap, "某某公司專用");
long end = System.currentTimeMillis();
Log.d("brycegao", "打水印用時(shí):" + (end-begin) + "毫秒");
mWartermarkImage.setImageBitmap(destBmp);

小米4手機(jī)輸出: D/brycegao: 打水印用時(shí):69毫秒

使用3M字節(jié)的jpg圖片測(cè)試打水印,報(bào)OOM錯(cuò)誤。

 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)

關(guān)于“Android中如何給圖片添加水印”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“Android中如何給圖片添加水印”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享題目:Android中如何給圖片添加水印-創(chuàng)新互聯(lián)
鏈接URL:http://weahome.cn/article/coejei.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部