I have another question about this.
I have a component wich dialog has a uuidLink control for the user select an
image. I want to resize this image before render it, so I have configured the
imaging module. I am able to get the resized image putting the correct url into
the web browser. But now, I need to do this from the uuid that the user
provides. I have something like this:
[code]public String getURL(String uuid){
String url="";
try {
url = LinkUtil.createAbsoluteLink("imaging", uuid);
} catch (RepositoryException e) {
e.printStackTrace();
return "";
}
return url;
}[/code]
but doesn't work, I get an ItemNotFound Exception due to "imaging" is not
recognized. What is the correct way to do this??
Thanks!
--
Context is everything:
http://forum.magnolia-cms.com/forum/thread.html?threadId=a3ea9cac-e89d-403a-b016-efff7c12b60a
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------