11 lines
231 B
PHP
11 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;
|
|
}
|