BitMiracle.LibTiff.Classic.Tiff.SwabArrayOfTriples C# (CSharp) Method

SwabArrayOfTriples() public static method

Swaps the bytes in specified number of values in the array of triples (24-bit items).
public static SwabArrayOfTriples ( byte array, int count ) : void
array byte The array to swap bytes in.
count int The number of items to swap bytes in.
return void
        public static void SwabArrayOfTriples(byte[] array, int count)
        {
            SwabArrayOfTriples(array, 0, count);
        }

Same methods

Tiff::SwabArrayOfTriples ( byte array, int offset, int count ) : void
Tiff