Holder.js is intended to serve images for demonstrations - it is not a script and / or plug-in for you to crop your images based on demands.
To accomplish your desire, cut an image based on a URL parameter, you will actually use technology on the server side. An example is Rails's Paperclip gem - it does it for you with great convenience.
If you want something more specific and detailed, you will have to create a new topic specific to this subject, because at the moment you want to know how to perform this operation via JavaScript.
Well, with JavaScript the procedure is a bit more ... painful . Backbone is a front-end platform that will streamline your service, but knowledge of JavaScript across the whole will be super-necessary.
Why Backbone.js?
It has a routes mechanism that can diagnose a request from your client and then do something based on it.
In simplified words, its routing provides the ability to observe the URL. If it is something like this: Imagens/BD/bancoDeDados.png/200x200
, it can determine what should be done - this is when the request is asynchronous - which in this case is (re) cutting / (re) scaling of a rendered image based on a URL made available by your database - which will still require a GET
request, still asynchronous, to the server.
For this other task - the clipping - however, you'll need a plug-in or learn how to make a device from scratch.