Apachai.Effects.Core.UnaryPixelOp.Apply C# (CSharp) Method

Apply() public method

public Apply ( PixelData dst, PixelData src, int length ) : void
dst System.Drawing.PixelData
src System.Drawing.PixelData
length int
return void
        public unsafe override void Apply(PixelData* dst, PixelData* src, int length)
        {
            unsafe {
                while (length > 0) {
                    *dst = Apply (*src);
                    ++dst;
                    ++src;
                    --length;
                }
            }
        }

Same methods

UnaryPixelOp::Apply ( PixelData color ) : PixelData
UnaryPixelOp::Apply ( FastBitmap dst, FastBitmap src, Rectangle roi ) : void
UnaryPixelOp::Apply ( FastBitmap dst, Point dstOffset, FastBitmap src, Point srcOffset, int scanLength ) : void
UnaryPixelOp::Apply ( FastBitmap surface, Rectangle roi ) : void
UnaryPixelOp::Apply ( FastBitmap surface, Rectangle roi, int startIndex, int length ) : void
UnaryPixelOp::Apply ( PixelData ptr, int length ) : void