Our image resize robot allows you to quickly generate thumbnails from uploaded images. In the demo below it resizes the uploaded image files and creates 75x75 pixels versions of them. The resizing uses the "pad" resize strategy which scales the images to fit the 75x75 pixels and then fills the remaining width and height area with the defined background color. Note, that the default color is white. » See full documentation
"steps": {
"thumb": {
"robot": "/image/resize",
"width": 75,
"height": 75,
"resize_strategy": "pad",
"background": "#000000"
}
}
$(function() {
$('form').transloadit({
wait: true,
autoSubmit: true
});
});
For demos we allow a maximum of 30MB.
This form is html5-multiupload enabled. If your browser supports it, you can select multiple files and execute the template with them.