leftypol/inc/Service/Media/ImageMetadataReader.php

13 lines
226 B
PHP
Raw Normal View History

<?php
namespace Vichan\Service\Media;
2025-03-22 00:49:25 +01:00
use Vichan\Data\ImageMetadata;
interface ImageMetadataReader {
/**
* @param string $file_path Image file path.
*/
2025-03-22 00:49:25 +01:00
public function getMetadata(string $file_path): ImageMetadata;
}