JSON Image Parameters
Describes a list of parameters used specifically in the creation of a preview image of content for print, email or web.
This structure is used specifically by the Content Creation service when creating preview images.
Structure
The structure consists of an object
with the following optional name/value pairs:
-
context
– the context to be used in the creation of the preview (value of eitherprint
,email
orweb
)
(type ofstring
– Default value is determined by the first context in the template) -
section
– the section to be used within the context specified (as either thecontext
parameter, or else the default context of the template)
(type ofstring
– Default value is determined by the context specified. For the Print context this will be all enabled sections. For the Email and Web contexts this will be the default section) -
type
– the image type/format to be used in the creation of the preview (value of eitherjpg
,jpeg
orpng
)
(type ofstring
– Default value ofjpg
) -
dpi
– the target image resolution of the preview in dots per inch (DPI)
(type ofnumber
– Default value of96
) -
archive
– whether to return the resulting preview as a ZIP file/archive
(type ofboolean
– Default value is determined automatically by the number of image files in the preview output)
Specific to parameters with a type
parameter specified to a value of jpg
, the following optional name/value pair can be specified:
-
quality
– the image quality of the preview (value ranging from0-100
)
(type ofnumber
– Default value of100
)
Specific to parameters with a context
parameter specified to a value of print
, the following optional name/value pair can be specified:
-
bleed
– whether to include the bleed area in the preview
(type ofboolean
– Default value offalse
) -
pages
– the page range to be output in the preview
(type ofstring
– Default value is determined by the value of thearchive
parameter. If thearchive
parameter is specified tofalse
, then the default value will be1
. If the archive parameter is either omitted or specified to a value oftrue
, then the default value will be * (all pages) )
Specific to parameters with a context
parameter specified to a value of either email
, or web
the following optional name/value pair can be specified:
-
viewPortWidth
– the image width of the preview in pixels
(type ofnumber
– Default value of1024
)
Example
The following is an example of this structure:
{
"context": "print",
"type": "png",
"dpi": 150,
"archive": true,
"bleed": true,
"pages": "1-2"
}
{
"context": "web",
"section": "Section 1",
"type": "jpeg",
"viewPortWidth": 1024
}
{
"context": "email",
"section": "Section 2",
"type": "jpg",
"quality": 90
}