PictureEffectsConsole Xojo Plugin

FlipEffectConsole.ApplyBoth Method (console only)

Flips a picture in both directions.

ApplyBoth(
   source as Picture) as Picture

Parameters

source
The source picture to work with (must be 32 bits).

Returns

Picture
If the filter was successful: A reference to the modified picture else nil.

Remarks

Using Apply both is 2x faster then calling first ApplyHorizontal and then ApplyVertical.

Dim effect as FlipEffectConsole

effect = new FlipEffectConsole()

pic2 = effect.ApplyBoth(pic)

See Also

FlipEffectConsole Class