canvas教程

Android仿微信二维码和条形码(3)

字号+ 作者:H5之家 来源:H5之家 2016-11-11 10:00 我要评论( )

/*** * 缩放图片并加描边 * * @param src * @param destWidth * @param destHeigth * @return */ private Bitmap zoomBitmapBorder(Bitmap src, int destWidth, int destHeigth) { String tag = "lessenBitmap"; if

/*** * 缩放图片并加描边 * * @param src * @param destWidth * @param destHeigth * @return */ private Bitmap zoomBitmapBorder(Bitmap src, int destWidth, int destHeigth) { String tag = "lessenBitmap"; if (src == null) { return null; } int w = src.getWidth();// 源文件的大小 int h = src.getHeight(); // calculate the scale - in this case = 0.4f float scaleWidth = ((float) destWidth - 4) / w;// 宽度缩小比例 float scaleHeight = ((float) destHeigth - 4) / h;// 高度缩小比例 Log.d(tag, "bitmap width is :" + w); Log.d(tag, "bitmap height is :" + h); Log.d(tag, "new width is :" + destWidth); Log.d(tag, "new height is :" + destHeigth); Log.d(tag, "scale width is :" + scaleWidth); Log.d(tag, "scale height is :" + scaleHeight); Matrix m = new Matrix();// 矩阵 m.postScale(scaleWidth, scaleHeight);// 设置矩阵比例 Bitmap resizedBitmap = Bitmap.createBitmap(src, 0, 0, w, h, m, true);// 直接按照矩阵的比例把源文件画入进行 Bitmap newb = Bitmap.createBitmap(destWidth, destHeigth, Config.ARGB_8888);// 创建一个新的和SRC长度宽度一样的位图 Canvas cv = new Canvas(newb); //cv.drawColor(R.color.white); cv.drawRGB(0,128,128); cv.drawBitmap(resizedBitmap, 2, 2, null);// 设置ic_launcher的位置 // save all clip cv.save(Canvas.ALL_SAVE_FLAG);// 保存 // store cv.restore();// 存储 return getRoundedCornerBitmap(newb); } /** * 图片圆角 * @param bitmap * @return */ public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) { Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Config.ARGB_8888); Canvas canvas = new Canvas(output); final int color = 0xff424242; final Paint paint = new Paint(); final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight()); final RectF rectF = new RectF(rect); final float roundPx = 12; paint.setAntiAlias(true); canvas.drawARGB(0, 0, 0, 0); paint.setColor(color); canvas.drawRoundRect(rectF, roundPx, roundPx, paint); paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN)); canvas.drawBitmap(bitmap, rect, rect, paint); return output; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持网管之家。

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Android自定义组件系列【9】Canvas绘制折线图

    Android自定义组件系列【9】Canvas绘制折线图

    2016-11-11 11:00

  • 微信小程序实时开发工具 WEPT 正式发布了

    微信小程序实时开发工具 WEPT 正式发布了

    2016-11-10 18:01

  • 学习Canvas 画圆锥,并且作为一个统计图

    学习Canvas 画圆锥,并且作为一个统计图

    2016-11-05 14:03

  • Android中SurfaceView和view画出触摸轨迹

    Android中SurfaceView和view画出触摸轨迹

    2016-11-02 12:00

网友点评
a