We would like to simulate Imagemagick functionality, but only in Javascript. Do any libraries exist?
Specifically, the goal is to display thumbnails of images without distorting the thumbnail to the point where it is hardly resembles the original. This often happens with simple resizing via CSS.
One approach is to resize images on the server with Imagemagick.
The question is, if we don't want to store the thumbnails (because the originals are loaded from a third party which doesn't supply thumbnails), can we simulate Imagemagick's natural and high-fidelity resizing functionality with a Javascript library?
Thanks!
You can try Processing.js library. On the other hand you can port ImageMagick resize functionality to HTML5/Canvas + Javascript technology.
good luck !