Crop command customizations | Community
Skip to main content
New Participant
June 22, 2023
Solved

Crop command customizations

  • June 22, 2023
  • 1 reply
  • 494 views

Hi,

 

we are migrating custom transformers to image presets in DM. However for crop operation we have been using quite custom algorithm that was taking into consideration initial asset layer when calculating rectangle to crop:

 

int lengthPx; if (lengthStr.endsWith("%")) { String percentageStr = lengthStr.substring(0, lengthStr.length() - 1); double percentage = Double.parseDouble(percentageStr); lengthPx = (int)Math.round(percentage / 100.0D * (double)layerLength); } else { lengthPx = Integer.parseInt(lengthStr); } return lengthPx;

 

 Is it somehow possible to achieve something like that in DM?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by EstebanBustamante

Can you check if "Pixel Crop" adjust to what you need?, please take a look here: https://experienceleague.adobe.com/docs/experience-manager-65/developing/components/json-exporter-components.html?lang=en 

1 reply

EstebanBustamante
EstebanBustamanteAccepted solution
New Participant
June 28, 2023

Can you check if "Pixel Crop" adjust to what you need?, please take a look here: https://experienceleague.adobe.com/docs/experience-manager-65/developing/components/json-exporter-components.html?lang=en 

Esteban Bustamante