PictureEffectsRaw Xojo Plugin

GrayscaleEffectRaw Class (console safe)

A class to change picture contained in RawBitmap from color to grayscale picture.

Supports:
  • 8 bit per channel bitmaps

  • 16 bit per channel bitmaps

  • RGB color spaces

  • Synchronous and asynchronous modes supported



  • This class supports use of multiple CPU cores.

    MPImageFilterRaw
       GrayscaleEffectRaw

    class GrayscaleEffectRaw implements

    IRawBitmapProcessor

    IRawBitmapProcessorAsync

    Properties

    AsyncCompleted (Inherited) Returns true if asynchronous execution has completed, else false.
    AsyncResult (Inherited) Returns the result bitmap of asynchronous execution.
    CPUCoreCount (Inherited) Returns number of detected CPU cores on the running machine.
    Canceled (Inherited) If this one returns true then the effects execution was canceled by a Progress handler.
    ErrorCode (Inherited) Returns error code after applying the effect. This value is a Constant defined in the PictureEffectsRawError module.
    ForceThreads (Inherited) Forces use of thread when set to true even when using only one CPU core.
    GrayscaleTypeUse this property to specify which GrayScale algorithm to use.
    MaskSets mask for the operation if masking is wanted.
    MaximumCPUCores (Inherited) Read only property where each effect can report maximum CPU cores it supports.
    MultiprocessingHint (Inherited) Use this property to fine tune CPU usage for this algorithm. By default this property is set to zero (Automatic). This property accepts all constants that are defined in this class.
    ProgressHandler (Inherited) Use this property to use a progress class to get progress feedback from this function. This class must be a class that Implements the IProgressHandler Interface which is defined in this plugin.
    UseOriginalColorSpaceIf set to true then the result will have same color space as the RawBitmap passed in.

    Methods

    ApplyApplies the effect on a RawBitmap image with parameters that have been set on the class instance.
    ApplyApplies the effect on a RawBitmap image with parameters that have been set on the class instance, taking additionally grayscaleMethod as parameter.
    ApplyAsyncApplies the effect asynchronously on a RawBitmap image with parameters that have been set on the class instance.
    ApplyInPlaceApplies the effect on a RawBitmap image with parameters that have been set on the class instance, and the RawBitmap passed in will also get the result image.
    ApplyInPlaceAsyncApplies the effect asynchronously on a RawBitmap image with parameters that have been set on the class instance, and the RawBitmap passed in will also get the result image.
    Cancel (Inherited) Cancels processing and waits for threads to come to full stop when in asynchronous execution.

    Constants

    NTSC_PAL = 0
    ITU_R = 1
    AVERAGE = 2
    WEIGHTEDAVERAGE = 3
    CPU_USE_MACHINE_CORE_COUNT = -1 (Inherited)
    CPU_USE_AUTOMATIC = 0 (Inherited)
    CPU_USE_1_CORE = 1 (Inherited)
    CPU_USE_2_CORES = 2 (Inherited)
    CPU_USE_3_CORES = 3 (Inherited)
    CPU_USE_4_CORES = 4 (Inherited)
    CPU_USE_5_CORES = 5 (Inherited)
    CPU_USE_6_CORES = 6 (Inherited)
    CPU_USE_7_CORES = 7 (Inherited)
    CPU_USE_8_CORES = 8 (Inherited)

    Result from this class will always be RawBitmap with Gray or Gray and Alpha channel unless the UseOriginalColorSpace property was set to true or if Mask was used to only gray parts of the image. Alpha channel is always preserved and passed out also if there was one.


    Dim result as RawBitmap
    Dim effect as GrayscaleEffectRaw
    Dim p as Picture

    // The rawpic RawBitmap object could either be read directly from disk using GraphicsFormats plugin or converted from a Picture object using RawBitmapConverter.FromPicture

    effect = new GrayscaleEffectRaw()
    effect.Mask = new RawBitmapMask(40,40, rawpic.Width - 80, rawpic.Height-80) // A Rect mask does not create expensive bitmap mask under the hood
    effect.Mask.Inverted = true

    result = effect.Apply(rawpic,GrayscaleEffectRaw.NTSC_PAL)
    p = RawBitmapConverter.ToPicture(result)

    Supported Platforms:

  • macOS Intel 64 bit
  • macOS Apple Silicon
  • Windows 32 bit
  • Windows 64 bit
  • Windows ARM 64 bit
  • Linux 32 bit
  • Linux 64 bit
  • Linux ARM 32 bit
  • Linux ARM 64 bit
  • iOS