leftypol/inc/Service/Media/ImageFormatReader.php

12 lines
231 B
PHP
Raw Normal View History

<?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;
}