Newscoop\Image\RenditionService::getOptions PHP 메소드

getOptions() 공개 메소드

Get options
public getOptions ( ) : array
리턴 array
    public function getOptions()
    {
        $options = array();
        foreach ($this->getRenditions() as $name => $rendition) {
            $options[$name] = sprintf('%s (%s %dx%d)', $name, array_shift(explode('_', $rendition->getSpecs())), $rendition->getWidth(), $rendition->getHeight());
        }
        return $options;
    }