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?