What should be an ideal resolution for an image in the editor?
It would vary depending upon your requirement. The editor has a built-in support to accommodate all types of image resolutions. See example below:
Image resolution 3000x2500
Image resolution 200x200
Can I upload a GIF in the image tool?
Yes, image tool has a functionality to support all images including GIFs. You can upload GIFs in the same way as you upload JPEG. See example below:
Can I edit animated GIF image?
No, you cannot edit an animated GIF image.
How can I store images in my own storage?
For this, you simply need to integrate your Amazon S3 storage against your project. We have file storage support built-in with Amazon S3 that can be configured without any coding.
We also support all other types of storage. For more details, click here.
Can I use Merge Tags within the image tool?
Yes, you can use merge tags within the image tool. You need to pass merge tag value into image url.
See example below:
Can I change image height and weight or apply effects?
Yes, this can be done by using our "Apply effects and more" feature. Please note, this is only available on paid plans.
See example below:
How can I disable the image tool?
You can disable the image tool by passing value of "false" in Unlayer init code as shown below:
unlayer.init({
tools: {
image: {
enabled: false
}
}
});
Can I point the upload image button to my Image Library?
Yes, it is possible. You can implement it using our custom callback function.
unlayer.registerCallback('selectImage', function(data, done) {console.log('selectImage')done({ url: '//placehold.it/200x500&text=WOW' })});This function is not mentioned in our docs as it was custom made for one of our clients, but it will serve your purpose. Once you have implemented it, the upload button will point to your custom storage and not the Unlayer upload function.





