Validate images based on image dimensions

Created on 1 December 2017, over 7 years ago
Updated 11 August 2024, 8 months ago

Problem/Motivation

Dropzone upload does not provide a minimum or maximum image dimension setup.
At the moment dropzonejs only handle the file size and file formats.
But when you need a minimum or maximum image dimension, dropzonejs doesn't care about it.

Proposed resolution

Allow to setup the minium and maximum image dimension for an image dropzonejs upload widget.
Validate the image on server-side and on client-side based on #reject-images-based-on-image-dimensions.

Remaining tasks

None.

User interface changes

None.

API changes

None.

Data model changes

Added new schema keys:
- image_dimension
- max_width
- max_height
- min_width
- min_height

✨ Feature request
Status

Needs work

Version

2.0

Component

Code

Created by

πŸ‡©πŸ‡ͺGermany hinzpa

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡³πŸ‡±Netherlands falco010 πŸ‡³πŸ‡± The Netherlands

    Thanks for the patch! Functionality wise it was working properly for me (don't forget to update your EB Browser widget with the minimum resolution).

    However, I did get the following PHP error/warning (most likely because of Drupal 10/PHP 8.1) on the EB Browser widget config form if you have not set the new config yet:

    Deprecated function: explode(): Passing null to parameter #2 ($string) of type string is deprecated in Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget\DropzoneJsEbWidget->buildConfigurationForm() (line 517 of modules/contrib/dropzonejs/modules/eb_widget/src/Plugin/EntityBrowser/Widget/DropzoneJsEbWidget.php).
    Drupal\dropzonejs_eb_widget\Plugin\EntityBrowser\Widget\DropzoneJsEbWidget->buildConfigurationForm(Array, Object) (Line: 135)
    Drupal\entity_browser\Form\WidgetsConfig->buildForm(Array, Object)
    

    Therefore I added a small fix to the current patch.
    From this:

    $min_resolution = explode('x', $configuration['min_resolution']) + ['', ''];
    

    To this:

    if (isset($configuration['min_resolution'])) {
      $min_resolution = explode('x', $configuration['min_resolution']) + ['', ''];
    }
    else {
      $min_resolution = ['', ''];
    }
    

    In my opinion, this can be moved to RTBC, so also updating the status. Feel free to adjust if needed.

  • πŸ‡³πŸ‡±Netherlands falco010 πŸ‡³πŸ‡± The Netherlands
  • πŸ‡³πŸ‡±Netherlands falco010 πŸ‡³πŸ‡± The Netherlands

    Fixed some weird character formatting of the WIDTHΓ—HEIGHT description.

  • πŸ‡§πŸ‡ͺBelgium tim-diels Belgium πŸ‡§πŸ‡ͺ

    Could you provide interdiff for your changes? That would make it easier to review…

  • πŸ‡³πŸ‡±Netherlands falco010 πŸ‡³πŸ‡± The Netherlands

    Sure, here is an interdiff:

  • Status changed to Needs work 8 months ago
  • πŸ‡¨πŸ‡­Switzerland berdir Switzerland

    There were validation changes in D11 and this is fairly complex, so it would definitely be useful to have test coverage for this. At lest it needs to be converted to a merge request to ensure that it still works.

Production build 0.71.5 2024