Perspective Transformation of object filled with image in fabricjs
问题 We have some objects filled with image source. Is it possible to achieve perspective transformation of the filled image with adjusting rectangular grid positions in fabric js? i am trying to achieve similar to the above image in fabric js.... 回答1: True perspective distortions are not possible with FabricJS or other 2d canvas libraries. Canvas's 2d context will not do perspective transforms. Most canvas libraries, including fabricJS, use 2d contexts. There is a canvas 3d context -- webGL that