JBZoo\Image\Image::getWidth PHP Method

getWidth() public method

Get the current width
public getWidth ( ) : integer
return integer
    public function getWidth()
    {
        return $this->_width;
    }

Usage Example

Ejemplo n.º 1
0
 public function testIssue8()
 {
     $excepted = Helper::getExpected(__FUNCTION__ . '.png');
     $actual = Helper::getActual(__FUNCTION__ . '.png');
     $base = Helper::getOrig('issue-8/original.png');
     $img = new Image($base);
     if ($img->getHeight() != $img->getWidth()) {
         if ($img->getWidth() < 175) {
             $img->fitToWidth($img->getWidth());
         } else {
             $img->fitToWidth(175);
         }
     } else {
         $img->bestFit(175, 175);
     }
     $img->saveAs($actual);
     Helper::isFileEq($actual, $excepted);
 }
All Usage Examples Of JBZoo\Image\Image::getWidth