Function zng::image::mask::mask_image_downscale
source ยท pub fn mask_image_downscale(
child: impl UiNode,
downscale: impl IntoVar<Option<ImageDownscale>>,
) -> impl UiNode
Expand description
P
Custom pixel resize applied during mask image load/decode.
Note that this resize affects the image actual pixel size directly when it is loading to force the image pixels to
be within an expected size.
This property primary use is as error recover before the mask_image_limits
error happens, you set the limits to
the size that should not even be processed and set this property to the maximum size expected.
Changing this value after an image is already loaded or loading will cause the image to reload, image cache allocates different entries for different downscale values, this means that this property should never be used for responsive resize,use the widget size and other properties to efficiently resize an image on screen.