ActionssaveImageLocallyVersion: 4.62On this pagesaveImageLocally Saves an image to the local storage of the app. noteThis action is intended to work with a picker layer that has its allowMultipleSelection property set to false only. Using this action with a picker layer that has the allowMultipleSelection property set to true is unsupported! Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"form" (required)StringName of the form to use.null"formDataKey" (required)StringForm data key in which the image was saved.null"imageName"StringName under which the image should be saved.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Save an image locally Show ExampleHide ExampleSave an image locally after it got picked with a picker layer.{ "type": "saveImageLocally", "params": { "form": "imageUpload", "formDataKey": "imagePicker", "imageName": "imagePicked" }}The example will save the image into the namedForm imageUpload:imagePicker with the name imagePicked.