When our authors use the cropping option in the Image Component, the image "disappears" like this.
This seems to happen with larger images. For example, the original image size I'm testing is 6582x4388.
We are using AEM 6.5 and components version 2.13.0.
I haven't found any useful info in the logs, but I'm not sure what I'm looking for.
I'm wondering if this has happened to others and how you may have resolved it?
Solved! Go to Solution.
Views
Replies
Total Likes
Yes I was able to replicate this issue on my local environment as well. I did some debugging and looks like it has nothing to do with crop function. Below are my findings-
5. Further I looked at the AdaptiveImageServlet code and found that it loads the image in memory, transforms image in memory and then streams it.
So my guess is that when you have big size images then AdaptiveImageServlet might not be able to function as expected. As it loads the image in memory for processing and might eat up your heap size. And you see this issue more often during crop because just after crop finishes it fires multiple calls to load the image.
Yes I was able to replicate this issue on my local environment as well. I did some debugging and looks like it has nothing to do with crop function. Below are my findings-
5. Further I looked at the AdaptiveImageServlet code and found that it loads the image in memory, transforms image in memory and then streams it.
So my guess is that when you have big size images then AdaptiveImageServlet might not be able to function as expected. As it loads the image in memory for processing and might eat up your heap size. And you see this issue more often during crop because just after crop finishes it fires multiple calls to load the image.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies