in PHP by
What are the functions to be used to get the image's properties (size, width, and height)?

1 Answer

0 votes
by

The functions are getimagesize() for size, imagesx() for width and imagesy() for height.

...