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 = 0Image 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 = 1Image 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 = 2Image 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 = 3Trimming is based on bounds that has been manually set by the SetManualTrimBounds method. When manual trimming is used then the EdgePixelCount property does nothing.