Is it possible to add a watermark ( text or image ) to an animated gif , clientside using jquery.
In this instance all processing is client side.
I cant get it to work on jsfiddle. But its very simple, the watermark is added to the main image.
The issue I have is I need this to work on animated gifs. So the watermark displays bottom right hand corner.
The master js code is: http://www.patrick-wied.at/static/watermarkjs/jq/
The script on page:
var config = {
"path": "watermark.png"
};
$(document).ready(function() {
$(document).watermark(config);
});
My only issue is, normally we could process this using imagemagik gd , and php etc.. but this must work clientside. So any suggestions please.