Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目需要像这样(http://alias.io/raphael/free_transform/)自由转换一个对象,除了图像(png)。处理完图像后,我需要使用 AJAX Post 将图像发送到 Web 服务。谁能帮忙举个例子?
Raphael 并不是为图像处理而设计的,真的。我建议您存储用户选择的参数(旋转、缩放等),然后将它们应用到纯 JavaScript 中的原始图像。如果您坚持仿射变换,则存储图像四个角的位置并应用例如双线性插值就足够了。甚至更好:将参数和图像发送回服务器并在那里执行。