Skip to main content

Resize image

Resize and crop an image (via a URL). The image is returned as a base64 string or as a data URI that you can use directly in <img> tags. You can download this system service from Grexx Marketplace.

Input

Use a casetype activity to add inputs to the Start Systemservice resize image form.

AttributeData typeMandatory?Description
HeightIntegerNoHeight of the new image. Default: 512
OperationStringNoSee supported values below. Default: focus
TypeStringNoChoice of: jpg, png, tiff, webp. Default: jpg
WidthIntegerNoWidth of the new image. Default: 512
URLStringYesURL of the image you want to resize. For a file from your application, use file.tempUrl
OperationDescription
FocusCrop the image to the desired dimensions with focus on the most interesting part of the image.
CropCrop the image to the desired dimensions with focus on the center of the image.
EmbedMake sure the image is within the desired dimensions and fill the rest with a black background.
MaxResize the image within the same aspect ratio.

Output

Outputs are added to the Result Systemservice resize image form when the Systemservice resize image case is closed.

AttributeData typeMandatory?Description
ErrorStringNoIf something went wrong, the error message.
FileFileNoThe resized image.
Result heightIntegerNoThe final height (useful if Operation=max was applied).
Result widthIntegerNoThe final width (useful if Operation=max was applied).
SizeIntegerNoThe size in bytes of the resized image.