forked from leftypol/leftypol
12 lines
231 B
PHP
12 lines
231 B
PHP
|
<?php
|
||
|
namespace Vichan\Service\Media;
|
||
|
|
||
|
|
||
|
interface ImageFormatReader {
|
||
|
/**
|
||
|
* @param string $file_path Image file path.
|
||
|
* @return array An array with width and height.
|
||
|
*/
|
||
|
public function getSizes(string $file_path): array;
|
||
|
}
|