android ImageUtils 图片处理工具类

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android ImageUtils 图片处理工具类相关的知识,希望对你有一定的参考价值。

	/**
	 * 加入文字到图片。相似水印文字。

* @param gContext * @param gResId * @param gText * @return */ public static Bitmap drawTextToBitmap(Context gContext, int gResId, String gText) { Resources resources = gContext.getResources(); float scale = resources.getDisplayMetrics().density; Bitmap bitmap = BitmapFactory.decodeResource(resources, gResId); android.graphics.Bitmap.Config bitmapConfig = bitmap.getConfig(); // set default bitmap config if none if (bitmapConfig == null) { bitmapConfig = android.graphics.Bitmap.Config.ARGB_8888; } // resource bitmaps are imutable, // so we need to convert it to mutable one bitmap = bitmap.copy(bitmapConfig, true); Canvas canvas = new Canvas(bitmap); // new antialised Paint Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); // text color - #3D3D3D paint.setColor(Color.rgb(61,61,61)); // text size in pixels paint.setTextSize((int) (14 * scale*5)); // text shadow paint.setShadowLayer(1f, 0f, 1f, Color.WHITE); // draw text to the Canvas center Rect bounds = new Rect(); paint.getTextBounds(gText, 0, gText.length(), bounds); // int x = (bitmap.getWidth() - bounds.width()) / 2; // int y = (bitmap.getHeight() + bounds.height()) / 2; //draw text to the bottom int x = (bitmap.getWidth() - bounds.width())/10*9 ; int y = (bitmap.getHeight() + bounds.height())/10*9; canvas.drawText(gText, x , y, paint); return bitmap; }



以上是关于android ImageUtils 图片处理工具类的主要内容,如果未能解决你的问题,请参考以下文章

Android-ImageUtils工具类

最新源码Glide4.12框架之加载图片流程源码分析

最新源码Glide4.12框架之加载图片流程源码分析

最新源码Glide4.12框架之加载图片流程源码分析

最新源码Glide4.12框架之加载图片流程源码分析

最新源码Glide4.12框架之加载图片流程源码分析