Файл: system/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php
Строк: 30
<?php
namespace InterventionImageGdCommands;
use InterventionImageCommandsAbstractCommand;
use InterventionImageSize;
class GetSizeCommand extends AbstractCommand
{
/**
* Reads size of given image instance in pixels
*
* @param InterventionImageImage $image
* @return boolean
*/
public function execute($image)
{
$this->setOutput(new Size(
imagesx($image->getCore()),
imagesy($image->getCore())
));
return true;
}
}