... |
... |
@@ -1,17
+4,18 @@ |
1 |
|
-{{id name="fig_plugin_barcode"/}} |
2 |
|
-{{figure image="plugin_barcode_en.png"}}Configuration UI of the Barcode plugin{{/figure}} |
3 |
|
- |
4 |
4 |
The Barcode plugin allows users to create barcodes (from form data). |
5 |
5 |
|
6 |
6 |
A plugin installation guide can be found [[here>>doc:Formcycle.UserInterface.Client.Plugins.WebHome]]. |
7 |
7 |
|
8 |
8 |
== Plugin parameters == |
|
6 |
+{{id name="fig_plugin_barcode"/}} |
|
7 |
+{{figure image="plugin_barcode_en.png"}}Configuration UI of the Barcode plugin. The content of the barcode can be generated from form input using [[placeholders>>doc:Formcycle.UserInterface.Variables.WebHome]]. The output variable may be used for subsequent workflow actions such as [[Word (Fill)>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.WordFill.WebHome]] or [[PDF (Fill)>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.PDFFill.WebHome]]{{/figure}} |
|
8 |
+{{id name="fig_barcode_doc_en"/}} |
|
9 |
+{{figure image="barcode_doc_en.png"}}Including a QR code in a document using [[Word (Fill)>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.WordFill.WebHome]]. On the left is a Word document containing a control element with the value of the barcode variable. For more information about how to fill Word documents look [[here>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.WordFill.PreparationWord.WebHome]]. After the workflow processing has been executed with a barcode plugin action and a Word (Fill) action the document on the right is generated.{{/figure}} |
9 |
9 |
|
10 |
10 |
* **Format** (Mandatory) |
11 |
11 |
Selction of the desired barcode format. The following formats are available: //UPC-A//, //UPC-E//, //EAN-8//, //EAN-13//, //CODE 39//, //CODE 93//, //CODE 128//, //ITF//, //CODABAR//, //DATAMATRIX//, //PDF417//, //QR// and //AZTEC//. |
12 |
12 |
|
13 |
13 |
* **Content** (Mandatory) |
14 |
|
-The content that should be encoded. It can be generated with [[placeholders>>Main.Platzhalter]] as seen in the [[figure>>||anchor="fig_plugin_barcode"]]. The content has to: |
|
15 |
+The content that should be encoded. It can be generated with [[placeholders>>doc:Formcycle.UserInterface.Variables.WebHome]] as seen in the [[figure>>||anchor="fig_plugin_barcode"]]. The content has to: |
15 |
15 |
** be non-empty |
16 |
16 |
** conform to the selected format |
17 |
17 |
** be the right size. It can not be too big (the max size depends on the format) |
... |
... |
@@ -21,7
+21,7 @@ |
21 |
21 |
Name of the image file to be generated. The **file extension** has to be given. The following file extensions are possible: {{code}}.png{{/code}}, {{code}}.jpg{{/code}}, {{code}}.jpeg{{/code}}, {{code}}.bmp{{/code}}, {{code}}.gif{{/code}} |
22 |
22 |
|
23 |
23 |
* **Name of output variable** (optional) |
24 |
|
-The variable allows access to the image data ({{code}}Base64{{/code}} data) of the barcode. The variable name can not contain whitespaces. Other actions can access the image data via this variable, e.g. [[Word (Fill)>>Main.Word (Fill)]] or [[PDF (Fill)>>Main.PDF - Fill]] for including the barcode in documents. The syntax for including the image data is as follows: |
|
25 |
+The variable allows access to the image data ({{code}}Base64{{/code}} data) of the barcode. The variable name can not contain whitespaces. Other actions can access the image data via this variable, e.g. [[Word (Fill)>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.WordFill.WebHome]] or [[PDF (Fill)>>doc:Formcycle.UserInterface.MyForms.WorkflowProcessing.Actions.PDFFill.WebHome]] for including the barcode in documents. The syntax for including the image data is as follows: |
25 |
25 |
** Word (Fill): {{code}}<Name of output variable>.b64img(){{/code}} |
26 |
26 |
** PDF (Fill): {{code}}<Name of output variable>-b64img{{/code}} |
27 |
27 |
|