Find the coordinates of the corners of a rotated object in fabricjs

前端 未结 1 1839
北海茫月
北海茫月 2021-01-04 08:06

Suppose I have an image in a fabricjs canvas. I can easily calculate the coordinates of the corners based on the image\'s top & left values, an

相关标签:
1条回答
  • 2021-01-04 08:46

    Yes, of course.

    We store those coordinates in object's oCoords

    oCoords.tl.x, oCoords.tl.y // top left corner 
    oCoords.tr.x, oCoords.tr.y // top right corner
    oCoords.bl.x, oCoords.bl.y // bottom left corner
    oCoords.br.x, oCoords.br.y // bottom right corner
    

    That's what gets set when you call setCoords method.

    But you probably don't want to mess with those.

    Since version ~1.0.4, we have getBoundingRect method on all objects, which returns { left: ..., top: ..., width: ..., height: ... }. We already had getBoundingRectWidth and getBoundingRectHeight before (now deprecated) but getBoundingRect is certainly more useful; it allows to read left/top values as well.

    You can see it in action at http://fabricjs.com/bounding-rectangle (try rotating objects)

    More:
    http://fabricjs.com/docs/fabric.Group.html#oCoords
    http://fabricjs.com/docs/fabric.Group.html#calcCoords

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