mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-21 23:48:32 -06:00
FF-152 - saving pattern match match to "PatternMatch" variable
added help links to image and audio nodes
This commit is contained in:
@@ -6,6 +6,7 @@ public class ImageFile : ImageBaseNode
|
||||
{
|
||||
public override int Outputs => 1;
|
||||
public override FlowElementType Type => FlowElementType.Input;
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-file";
|
||||
|
||||
public override string Icon => "fas fa-file-image";
|
||||
|
||||
@@ -16,7 +17,7 @@ public class ImageFile : ImageBaseNode
|
||||
_Variables = new Dictionary<string, object>()
|
||||
{
|
||||
{ "img.Width", 1920 },
|
||||
{ "img.Heigh", 1080 },
|
||||
{ "img.Height", 1080 },
|
||||
{ "img.Format", "PNG" },
|
||||
{ "img.IsPortrait", true },
|
||||
{ "img.IsLandscape", false }
|
||||
|
||||
@@ -7,7 +7,8 @@ public class ImageFlip: ImageNode
|
||||
{
|
||||
public override int Inputs => 1;
|
||||
public override int Outputs => 1;
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-flip";
|
||||
public override string Icon => "fas fa-sync-alt";
|
||||
|
||||
[Boolean(2)]
|
||||
|
||||
@@ -6,7 +6,9 @@ public class ImageFormat: ImageNode
|
||||
{
|
||||
public override int Inputs => 1;
|
||||
public override int Outputs => 2;
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-format";
|
||||
public override string Icon => "fas fa-file-image";
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
@@ -7,6 +7,8 @@ public class ImageIsLandscape: ImageBaseNode
|
||||
public override FlowElementType Type => FlowElementType.Logic;
|
||||
public override string Icon => "fas fa-image";
|
||||
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-is-landscape";
|
||||
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
{
|
||||
|
||||
@@ -17,8 +17,10 @@ public class ImageResizer: ImageNode
|
||||
public override int Outputs => 1;
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
public override string Icon => "fas fa-expand";
|
||||
|
||||
|
||||
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-resizer";
|
||||
|
||||
|
||||
[Select(nameof(ResizeModes), 2)]
|
||||
public ResizeMode Mode { get; set; }
|
||||
|
||||
|
||||
@@ -10,6 +10,8 @@ public class ImageRotate: ImageNode
|
||||
public override FlowElementType Type => FlowElementType.Process;
|
||||
public override string Icon => "fas fa-undo";
|
||||
|
||||
public override string HelpUrl => "https://docs.fileflows.com/plugins/image-nodes/image-rotate";
|
||||
|
||||
[Select(nameof(AngleOptions), 2)]
|
||||
public int Angle { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user