gpt4 book ai didi

java - Android 在位图上以编程方式绘制形状

转载 作者:行者123 更新时间:2023-11-29 03:38:59 24 4
gpt4 key购买 nike

我想画一个像这样的形状:

enter image description here

我可以使用这个形状在 Canvas 上绘制,但我必须在运行时用黑色和什么颜色创建这个位图。有什么办法可以做到这一点,比如使用路径或其他方法吗?

最佳答案

Is there any way to do this like using path or something else?

是的,您可以使用 Path 创建它:

// the Paint for the path
Paint p = new Paint();
p.setAntiAlias(true);
p.setColor(Color.BLACK);
p.setStyle(Style.FILL);
// the path
Path pth = new Path();
pth.moveTo(50, 200); // example values, modify with your own, or to improve the path
pth.lineTo(70, 140);
pth.quadTo(150, 115, 230, 140);
pth.lineTo(250, 200);
pth.quadTo(150, 165, 50, 200);
pth.close();

确保您用于路径的值在 Bitmap 的范围内,以便您可以看到路径。

关于java - Android 在位图上以编程方式绘制形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14051582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com