如何绘制平滑圆角的路径?

如何绘制平滑圆角的路径?,第1张

如何绘制平滑/圆角的路径

也许这会创造你想要的

paint.setColor(color);         // set the colorpaint.setStrokeWidth(size);    // set the sizepaint.setDither(true);         // set the dither to truepaint.setStyle(Paint.Style.STROKE);       // set to STOKEpaint.setStrokeJoin(Paint.Join.ROUND);    // set the join to round you wantpaint.setStrokeCap(Paint.Cap.ROUND);      // set the paint cap to round toopaint.setPathEffect(new CornerPathEffect(10) );   // set the path effect when they join.paint.setAntiAlias(true);   // set anti alias so it smooths

:)



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5500779.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存