forked from leftypol/leftypol
13 lines
238 B
PHP
13 lines
238 B
PHP
|
<?php
|
||
|
namespace Vichan\Service\Media;
|
||
|
|
||
|
use Vichan\Data\ImageMetadataResult;
|
||
|
|
||
|
|
||
|
interface ImageMetadataReader {
|
||
|
/**
|
||
|
* @param string $file_path Image file path.
|
||
|
*/
|
||
|
public function getMetadata(string $file_path): ImageMetadataResult;
|
||
|
}
|