Faster_Image_B52f1a8_Image_Parser::parseSizeForIco PHP Метод

parseSizeForIco() публичный Метод

public parseSizeForIco ( ) : array
Результат array
    public function parseSizeForIco()
    {
        $this->stream->read(6);
        $b1 = $this->getByte();
        $b2 = $this->getByte();
        return [$b1 == 0 ? 256 : $b1, $b2 == 0 ? 256 : $b2];
    }