ImageProcessor.php 353 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: NODELOG
  5. * DateTime: 2017/2/24 17:39
  6. * Description:
  7. */
  8. namespace common\modules\attachment\components\contracts;
  9. interface ImageProcessor
  10. {
  11. public function thumbnail($path, $width, $height);
  12. public function crop($path, $width, $height, array $start = [0,0]);
  13. // abstract function water();
  14. }