Beispiel #1
0
    /// <summary>
    /// Copies all pixels within the specified arranger
    /// </summary>
    /// <param name="arranger">Source to copy from</param>
    /// <returns></returns>
    public static IndexedPixelCopy CopyPixelsIndexed(this Arranger arranger)
    {
        int width  = arranger.ArrangerPixelSize.Width;
        int height = arranger.ArrangerPixelSize.Height;

        return(arranger.CopyPixelsIndexed(0, 0, width, height));
    }