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