在 Imagedraw 中使用浮点值
有没有办法设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想要子像素定位,一种可能但效率低下的解决方案是将所有内容放大一倍,例如 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.