Source Sets
Source sets allow specifying an entire set of sources, each with a different size, that should be used for drawing a block. The appropriate source is then dynamically chosen based on the current drawing size. This allows using the same scene to render a preview on a mobile screen using a small image file and a high-resolution file for print in the backend.
This guide will show you how to specify source sets both for existing blocks and when defining assets.
Explore a full code sample on Stackblitz or view the code on Github.
Drawing#
When an image needs to be drawn, the current drawing size in screen pixels is calculated and the engine looks up the most appropriate source file to draw at that resolution.
- If a source set is set, the source with the closest size exceeding the drawing size is used
- If no source set is set, the full resolution image is downscaled to a maximum edge length of 4096 (configurable via
maxImageSize
setting) and drawn to the target area
This also gives more control about up- and downsampling to you, as all intermediate resolutions can be generated using tooling of your choice.
Source sets are also used during export of your designs and will resolve to the best matching asset for the export resolution.
Setup the scene#
We first create a new scene with a new page.
Using a Source Set for an existing Block#
To make use of a source set for an existing image fill, we use the setSourceSet
API. This defines a set of sources and specifies height and width for each of these sources. The engine then chooses the appropriate source during drawing. You may query an existing source set using getSourceSet
. You can add sources to an existing source set with addImageFileURIToSourceSet
.
Using a Source Set in an Asset#
For assets, source sets can be defined in the payload.sourceSet
field. This is directly translated to the sourceSet
property when applying the asset. The resulting block is configured in the same way as the one described above. The code demonstrates how to add an asset that defines a source set to a local source and how applyAsset
handles a populated payload.sourceSet
.
Video Source Sets#
Source sets can also be used for video fills. This is done by setting the sourceSet
property of the video fill. The engine will then use the source with the closest size exceeding the drawing size.
Thumbnails will use the smallest source if features/matchThumbnailSourceToFill
is disabled, which is the default.
For low end devices or scenes with large videos, you can force the preview to always use the smallest source when editing by enabling features/forceLowQualityVideoPreview
. On export, the highest quality source is used in any case.