TradImage.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace App\Exceptions\Form;
  3. use Dcat\Admin\Form\Field\File;
  4. use Dcat\Admin\Form\Field\ImageField;
  5. use Symfony\Component\HttpFoundation\File\UploadedFile;
  6. class TradImage extends File
  7. {
  8. use ImageField;
  9. protected $view = 'admin.form_custom.trad-image';
  10. protected $rules = ['nullable', 'image'];
  11. public function __construct($column, $arguments = [])
  12. {
  13. parent::__construct($column, $arguments);
  14. $this->setupImage();
  15. }
  16. protected function setupImage()
  17. {
  18. if (! isset($this->options['accept'])) {
  19. $this->options['accept'] = [];
  20. }
  21. $this->options['accept']['mimeTypes'] = 'image/*';
  22. $this->options['isImage'] = true;
  23. }
  24. public function dimensions(array $options)
  25. {
  26. if (! $options) {
  27. return $this;
  28. }
  29. $this->mergeOptions(['dimensions' => $options]);
  30. foreach ($options as $k => &$v) {
  31. $v = "$k=$v";
  32. }
  33. return $this->rules('dimensions:'.implode(',', $options));
  34. }
  35. /**
  36. * Set ratio constraint.
  37. *
  38. * @param float $ratio width/height
  39. * @return $this
  40. */
  41. public function ratio($ratio)
  42. {
  43. if ($ratio <= 0) {
  44. return $this;
  45. }
  46. return $this->dimensions(['ratio' => $ratio]);
  47. }
  48. /**
  49. * @param UploadedFile $file
  50. */
  51. protected function prepareFile(UploadedFile $file)
  52. {
  53. $this->callInterventionMethods($file->getRealPath(), $file->getMimeType());
  54. $this->uploadAndDeleteOriginalThumbnail($file);
  55. }
  56. }