NewTOAPIA.Drawing.ImageProxy.AttachBuffer C# (CSharp) Method

AttachBuffer() public method

public AttachBuffer ( byte pBuffer, int width, int height, int stride, int bitDepth, int distanceBetweenPixelsInclusive ) : void
pBuffer byte
width int
height int
stride int
bitDepth int
distanceBetweenPixelsInclusive int
return void
        public unsafe void AttachBuffer(byte* pBuffer, int width, int height, int stride, int bitDepth, int distanceBetweenPixelsInclusive)
        {
            m_LinkedImage.AttachBuffer(pBuffer, width, height, stride, bitDepth, distanceBetweenPixelsInclusive);
        }