在 Imagedraw 中使用浮点值

发布于 2024-11-30 11:24:13 字数 137 浏览 2 评论 0原文

有没有办法设置 PIL 并通过扩展 Imagedraw 来允许 Arc 和 Ellipse 等命令的浮点值?我遇到了重大问题,无法做我需要做的事情,因为似乎要求角度和边界框位置说明符必须是整数,而且我不能使用不同的包,用短直线近似所有内容也不是可行的替代方案。

Is there a way to set PIL and by extension Imagedraw to allow float values for such commands as Arc and Ellipse? I am running into major problems and cannot do what I need to do because of the seeming requirement that angles and bounding box position specifiers must be integers, and I cannot use a different package, nor is approximating everything with short straight lines a viable alternative either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁绊已千年 2024-12-07 11:24:13

如果您想要子像素定位,一种可能但效率低下的解决方案是将所有内容放大一倍,例如 10,四舍五入 (original_floating_point_coordinates * 10) 为整数,然后在最后重新调整整个图像的大小。我想对角度没有帮助。

If you want sub-pixel positioning, one possible-if-inefficient solution would be to scale everything up by a factor of, say, 10, rounding (original_floating_point_coordinates * 10) to integers, then resize the whole image back down at the end. Doesn't help with angles, I suppose.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文