WP_Image_Editor::get_size(): int[]

Gets dimensions of image.


Return

int[] Dimensions of the image.

  • width int
    The image width.
  • height int
    The image height.


Top ↑

Source

File: wp-includes/class-wp-image-editor.php. View all references

public function get_size() {
	return $this->size;
}


Top ↑

Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.