Downloads
- Elaine Foley
You can download every content item from Picturepark to your local desktop if you like. You can download file-based content items in the desired output format, e.g., suitable for website or social media usage. Those are pre-configured for the system. Picturepark exports file-less content items as JSON.
Picturepark generates (renders) static (preconfigured, pre-rendered) and dynamic (on-demand rendered) formats. Both are available in the format selection dialogue which opens up when you download or share.Â
Dynamic Formats
Dynamic Formats can be defined for images only and are rendered on demand for the selected Content Item in Picturepark and not saved to the storage but only to a cache for the configured retention time. Dynamic formats may be Hero Images, Social Media Images, or Campaign Specials.
The benefits of dynamic rendering
Those are customizable by the customer during operation (setup via API)
Dynamic formats are cached (retention time configuration), so the downloader does not have to wait for frequently accessed content.Â
Picturepark does not store them on storage which saves money for the monthly storage subscription price.Â
The drawback of dynamic rendering
The download of multiple dynamic formats of the same Content Item is possible.Â
Rendering on request (lazy) may take some time until Picturepark generates the output. Picturepark will notify you when you can access the ready-to-download file.
You can continue working in Picturepark while waiting for your download to be ready.Â
Only available to produce images (rasterized files).Â
Costs performance of rendering microservice. Â
Static Formats
Static formats are created on customer creation, predefined, and rendered for every Content Item in Picturepark, saved to the storage. The benefits of static formats
No waiting times for downloading them. Picturepark creates the format after import and every user can then directly download it. Â
You can have static formats created for all file types (based on rendering support).Â
The drawback of static formats
Costs storage, as all formats are rendered and saved on the storage.
Previews
Previews are static formats, available for File Types.Â
The standard windows server fonts are installed on our rendering server and will be applied and rendered to document previews. Any other fonts will be substituted.
You see a file format icon when Picturepark couldn’t render a preview e.g. Indd for Indesign files.
The original file is also available -Â accessing (download) the Original File can be restricted with Content Permissions.Â
You cannot restrict Access/Download of previews, but it is possible that you add a watermark to Preview which is then also applied to other Formats and Thumbnails derived from the Preview. Check for formats and thumbnails if their rendering source is the Preview format to ensure that the Watermark is applied everywhere. Â
Picturepark generates the following previews for supported file formats.
Preview name | Size (max) | Color profile | File Format | Quality | Notes |
Preview | 1600x1600 | SRGB | .jpg | 95 |
|
Thumbnail Large | 320x320 | Original | .jpg | 95 | |
Thumbnail Medium | 200x220 | Original | .jpg | 95 | |
Thumbnail Small | 90x120 | Original | .jpg | 95 | |
Video Keyframes (these are Small thumbnails used in UI for Video Thumb-Slider in player) | 160x160 (max 50 sprites) | RGB | .jpg | 80 | |
(These PDFs are used for display in the document viewer (even though a pdf would have an original it may be too large to make a good document viewer pdf i.e. to display on mobile so we render a format for this.) | NA | 90 | |||
Video Small | 360x480 | .mp4 | |||
Video Large | 1280x720 | .mp4 | |||
Audio Small | NA | .mp3 |
Create a Download Format / Output Format
The static formats are created on customer creation. Check Format Modifications for your desired settings.Â
The dynamic formats are created via API: https://demo.picturepark.com/Docs/Rest/index.html#operation/OutputFormat_Create . It is recommended to test your settings using the preview operation, which allows generating a temporary preview of your desired output to validate your settings: https://demo.picturepark.com/Docs/Rest/index.html#operation/OutputFormat_RenderFormatPreview  based on the actual Content Items of your Picturepark.Â
Â
Examples
There are no items with the selected labels at this time.
Update a Download Format / Output Format
You cannot update static format attributes (e.g. resizing). You can however update attributes like:Â Â
XMP Writeback (enableXmpWriteback; boolean)
Filename pattern used when the file is downloaded (downloadFileNamePatterns; string translated)
Permission to access output formats even if the source is not accessible (viewForAll; boolean)
You can update output formats using the API:Â https://demo.picturepark.com/Docs/Rest/index.html#operation/OutputFormat_Update
Apply Resize Action
PUT:Â {{apiHost}}/v1/outputformats/{id}
{
"id": "MyFirstFormat",
"names": {
"en": "My first format"
},
"sourceOutputFormats": {
"image": "Original",
"video": "VideoPreview",
"document": "DocumentPreview",
"audio": "AudioPreview",
"vector": "VectorPreview"
},
"format": {
"kind": "JpegFormat",
"resizeAction":{
"width":50,
"height":50,
"resizeMode":"fit"
}
}
}
Â