PictureEffectsRaw Xojo Plugin |
|
TrimEffectRaw.TrimMethods Enum
A enum used to define what trim method to use when trimming a RawBitmap
enum TrimEffectRaw.TrimMethods
Constants
COLOR = 0 | Image is trimmed based on color value, taking into account tolerance that may have been set. Leaving intact the amount of edge pixels defined by the EdgePixelCount property. |
ALPHA = 1 | Image is trimmed based on alpha value, taking into account tolerance that may have been set. Leaving intact the amount of edge pixels defined by the EdgePixelCount property. |
COLOR_ALPHA = 2 | Image is trimmed based on color and alpha value, taking into account tolerance that may have been set. Leaving intact the amount of edge pixels defined by the EdgePixelCount property. |
MANUAL = 3 | Trimming is based on bounds that has been manually set by the SetManualTrimBounds method. When manual trimming is used then the EdgePixelCount property does nothing. |