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