- π§π·Brazil juamerico
I had the same issue, and turned out the
settings.crop_preview_image_style
, onentity_form_display
, was set to the same Image Style β value as theimage_style
onentity_view_display
.
For example:core.entity_view_display.node.machine_name.default.yml:
// some other code... content image_field: settings: image_style: your_crop_size //any aspect ratio you're using.
core.entity_form_display.node.machine_name.default.yml:
// some other code... content image_field: settings: crop_preview_image_style: your_crop_size //the same Image Style here.
What fixed it for me was creating a new Image Style β , with scale effect, and setting it on the
entity_form_display
. Like that:core.entity_form_display.node.machine_name.default.yml:
// some other code... content image_field: settings: crop_preview_image_style: scale_effect_crop_image_style //change it to the newly created Image Style.
You don't need to change anything in the
entity_view_display
.I hope this helps other people (:
- πΊπΈUnited States mariohernandez Los Angeles
I experienced the same issue and @juamerico's solution ( #5 π Cannot crop based on original image after initial crop has been set Active ), worked for me.
- Status changed to Closed: works as designed
8 days ago 10:12am 14 November 2024