Expand my Community achievements bar.

SOLVED

Crop command customizations

Avatar

Level 1

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?

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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-co... 



Esteban Bustamante

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

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-co... 



Esteban Bustamante