So basically i decided to start a small project but i noticed the node of the image is at the upper left corner. So for example, the x and y values are from that corner. I’d like them to be starting at the bottom left corner. How can i change that?
Sorry if node isn’t the right name.
Java
Componentuses the top left as the origin of the axis. So if you it to be at the bottom left, you need to add the height of the component to theycoordonate.You should set the location to
x, y+ component.getHeight()