Creating/modifying images in JavaScript

后端 未结 7 1736
刺人心
刺人心 2020-12-11 05:38

Is it possible to dynamically create and modify images on a per pixel level in JavaScript (on client side)? Or has this to be done with ser

相关标签:
7条回答
  • 2020-12-11 06:06

    You can imagine a set of JS tools that will allow the user to define what kind of transformation he wants to do, but the final work of transformation MUST be done on a server side. JS on the client side is unable to create a file, for security reason.

    0 讨论(0)
提交回复
热议问题