public IImage <bool> Pad(int width, int height) => ImageBase.Pad(this, BinaryImage.Generate, width, height);
public IImage <CMYK> DownsampleRows() => ImageBase.DownsampleRows(this, Generate);
public IImage <CMYK> Crop(System.Drawing.Rectangle rect) => ImageBase.Crop(this, Generate, rect);
IEnumerator <CMYK> IEnumerable <CMYK> .GetEnumerator() { return(ImageBase.GetEnumerator(this)); }
public IImage <CMYK> Transpose() => ImageBase.Transpose(this, CmykImage.Generate);
public byte[] ToImage() => ImageBase.ToImage(this);
public bool Contains(CMYK item) => ImageBase.Contains(this, item);
public IImage <bool> Crop(System.Drawing.Rectangle rect) => ImageBase.Crop(this, BinaryImage.Generate, rect);
public IImage <bool> Crop(int x1, int y1, int width, int height) => ImageBase.Crop(this, BinaryImage.Generate, x1, y1, width, height);
public IImage <bool> Transpose() => ImageBase.Transpose(this, BinaryImage.Generate);
IEnumerator <bool> IEnumerable <bool> .GetEnumerator() => ImageBase.GetEnumerator(this);
public IImage <bool> FlipXY() => ImageBase.FlipXY(this, BinaryImage.Generate);
public IImage <bool> DownsampleRows() => ImageBase.DownsampleRows(this, BinaryImage.Generate);
public IImage <bool> UpsampleCols() => ImageBase.UpsampleCols(this, BinaryImage.Generate);
public byte[] ToBGRA() => ImageBase.ToRGBA(this);
public bool Contains(double item) { return(ImageBase.Contains(this, item)); }
public BGRA[] ToPixelColor() => ImageBase.ToPixelColor(this);
IEnumerator <double> IEnumerable <double> .GetEnumerator() { return(ImageBase.GetEnumerator(this)); }
public void CopyTo(Array array, int index) => ImageBase.CopyTo(this, array, index);
public IImage <double> Pad(int width, int height) => ImageBase.Pad(this, Image.Generate, width, height);
public void CopyTo(CMYK[] array, int arrayIndex) => ImageBase.CopyTo(this, array, arrayIndex);
public IImage <double> UpsampleRows() => ImageBase.UpsampleRows(this, Generate);
public IImage <CMYK> Pad(int width, int height) => ImageBase.Pad(this, CmykImage.Generate, width, height);
public IImage <double> DownsampleCols() => ImageBase.DownsampleCols(this, Generate);
public IImage <CMYK> UpsampleRows() => ImageBase.UpsampleRows(this, Generate);
public IImage <double> FlipY() => ImageBase.FlipY(this, Generate);
public IImage <CMYK> FlipXY() => ImageBase.FlipXY(this, Generate);
public byte[] ToBGR() => ImageBase.ToRGB(this);
public IImage <CMYK> Crop(int x1, int y1, int width, int height) => ImageBase.Crop(this, Generate, x1, y1, width, height);
public IImage<BGRA> Transpose() => ImageBase.Transpose(this, BgraImage.Generate);