[AEM 6.1] Create rendition with higher DPI | Community
Skip to main content
Level 2
June 2, 2017
Solved

[AEM 6.1] Create rendition with higher DPI

  • June 2, 2017
  • 3 replies
  • 3238 views

Hi All,

We need to create a new image rendition with higher resolution/DPI than the uploaded original images in DAM.

The original image would be approximately 700x600 with 96pi and we need a rendition 1800x1800 with 300 DPI. We would like this rendition to appear in the image rendition section along with the other renditions(looking to update DAM Update Asset workflow).

I have come across articles suggesting to use CommandLine process with ImageMagick in DAM Update Asset workflow, but not sure how to get request for a specific DPI(300). What would be the command in this Command line process step?

I am also interested in knowing how this would effect the performance of the instance and if there are any alternative methods to achieve this.

Appreciate your help!

Thanks,

Ramya

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 ramyagreddy19-2

Hi,

I am able to create high resolution image rendition with 300dpi using the below Imagemagick command:

"<Installation-Path>\magick.exe" convert ${filename} -resize "1800x" -units PixelsPerInch -density 300 finalImageName

Will there be any performance impact with the usage of ImageMagick on AEM authoring instance? Are there any measures/best practices to handle this?

Thanks,

Ramya

3 replies

cquser1
Level 7
June 5, 2017

Hi,

I see some command provided in the below documentation in section "An Example Using ImageMagick"

Processing Assets Using Media Handlers and Workflows - docs.adobe.com

ramyagreddy19-2AuthorAccepted solution
Level 2
June 7, 2017

Hi,

I am able to create high resolution image rendition with 300dpi using the below Imagemagick command:

"<Installation-Path>\magick.exe" convert ${filename} -resize "1800x" -units PixelsPerInch -density 300 finalImageName

Will there be any performance impact with the usage of ImageMagick on AEM authoring instance? Are there any measures/best practices to handle this?

Thanks,

Ramya

cquser1
Level 7
June 8, 2017

Hi,

"ImageMagick" section in the below article

AEM Assets Performance Tuning Tips  has few pointers mentioned