| 1 | <?php |
||
| 13 | class IconExtractor |
||
| 14 | { |
||
| 15 | protected $image; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Contructor. |
||
| 19 | * |
||
| 20 | * @param string $filename The path of ico file |
||
| 21 | */ |
||
| 22 | public function __construct($filename) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the better quality image found in the icon. |
||
| 36 | * |
||
| 37 | * @return Image |
||
| 38 | */ |
||
| 39 | public function getBetterQuality() |
||
| 60 | } |
||
| 61 |