Back to Image class

Method getWidth

public int
getWidth
()
Method to get the width of the image in pixels.
Returns
  • int
Since
  • 2.5.0
-
  • \LogicException
Class: Image
Project: Joomla

Method getWidth - Source code

/**
 * Method to get the width of the image in pixels.
 *
 * @return  integer
 *
 * @since   2.5.0
 * @throws  \LogicException
 */
public function getWidth()
{
    return imagesx($this->getHandle());
}