0

I have applied the getBBox() function on my svg and it gives me x coord, y coord, width and height. I don't really understand what these values exactly represent as I was expecting four sets of x,y coords but got just one. can anybody explain to me what this output actually represents?

Salman
  • 393
  • 1
  • 7
  • 23
  • Possible duplicate of [How is the getBBox() SVGRect calculated?](https://stackoverflow.com/questions/6179173/how-is-the-getbbox-svgrect-calculated) – Sphinx Mar 10 '18 at 01:16

1 Answers1

0

It returns the bounding box of the element. The X and Y values are the coordinates of the top left corner of the element. You can add width and height to the x and y to get the coordinates of the other corners

EKW
  • 2,059
  • 14
  • 24