6 lines
112 B
PHP
6 lines
112 B
PHP
|
<?php
|
||
|
interface IThumbnailGenerator
|
||
|
{
|
||
|
public function generateFromFile($srcPath, $dstPath, $width, $height);
|
||
|
}
|