最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How do I apply fabricjs filters to an image loaded to a canvas using ctx.drawimage? - Stack Overflow

programmeradmin1浏览0评论

I am using fabricjs version 5.2.1 to layer images on top of each other. At first, the load order was not always correct, because the canvas would load the images before the previous image was completed loading. I found this excellent post on stackoverflow that worked flawlessly to load the images. Fabric.js add images order The only slight change I made to that example was var SelfLoadingImage = fabric.util.createClass(fabric.Image, { instead of var SelfLoadingImage = fabric.util.createClass(fabric.Object, {. I assumed I would need the self-loading image to be of type Image in order to manipulate the image.

However, the object that is created by this method does not appear to be the same as the object that gets created by fabric.Image.fromURL.

When I attempt to applyFilters on any of these images, it returns the error: Uncaught TypeError: Cannot read properties of undefined (reading 'naturalWidth') at klass.applyFilters (fabric.js:23335:36)

Is there a way to force the object that gets created by the ctx.drawImage to be the same as a normal fabric.Image object?

发布评论

评论列表(0)

  1. 暂无评论