Expand my Community achievements bar.

Join expert-led, customer-led sessions on Adobe Experience Manager Assets on August 20th at our Skill Exchange.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

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 and Adobe Champion

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 and Adobe Champion

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