-
-
Notifications
You must be signed in to change notification settings - Fork 162
ImagesTransformer
Akram El Assas edited this page Sep 19, 2024
·
2 revisions
<?xml version="1.0" encoding="utf-8" ?>
<Tasks>
<!--
ImagesTransformer is a sequential task that transforms a collection of image files to a specified format.
The image files generated will be loaded by this task so that other
tasks can select them through the selectFiles option.
-->
<Task id="$int" name="ImagesTransformer" description="$string" enabled="true|false">
<!--
The image files loaded by the task having as id $taskId will be
transformed.
-->
<Setting name="selectFiles" value="$taskId" />
<Setting name="selectFiles" value="$taskId" />
<!-- You can add as many selecteFiles as you want.-->
<!-- Output file name pattern. Variables: $fileName|$fileNameWithoutExtension. Example: $fileNameWithoutExtension.png -->
<Setting name="outputFilePattern" value="$string" />
<!-- Output format. Possible values (.NET): Bmp|Emf|Exif|Gif|Icon|Jpeg|Png|Tiff|Wmf. Example: Png-->
<!-- Output format. Possible values (.NET Core): Bmp|Gif|Icon|Jpeg|Png. Example: Png-->
<Setting name="outputFormat" value="Bmp|Emf|Exif|Gif|Icon|Jpeg|Png|Tiff|Wmf" />
<!-- Optional. Samba computer name. -->
<Setting name="smbComputerName" value="$string" />
<!-- Optional. Samba domain name. -->
<Setting name="smbDomain" value="$string" />
<!-- Optional. Samba username. -->
<Setting name="smbUsername" value="$string" />
<!-- Optional. Samba password. -->
<Setting name="smbPassword" value="$string" />
</Task>
</Tasks>
Copyright © Akram El Assas. All rights reserved.