Images

You can insert .png and .jpeg images into your document, and you can adjust images width :

  • either glogally with the “forceWidth” parameter in the body of your JSON. Example : "forceWidth" : 200, will apply a 200 pixels width to all the images in your document (height will adjust automatically)

  • or individually for any individual image, by sending a “.setImageWidth” parameter in your data (see example below)

In order to insert an image into your document, you have to send the image URL in your data

You can also set the image width (in pixels) by adding a .setImageWidth parameter, as shown below:

Data

{
  "flower": "https://cdn.pixabay.com/photo/2019/12/15/11/22/flowers-4696878_960_720.jpg",
  "flower.setImageWidth": 200
}

In the template, an image tag is like a substitution tag, but with an additional “%” sign:

Last updated