Ejemplo n.º 1
0
 public IImage <double> Pad(int width, int height)
 => ImageBase.Pad(this, Image.Generate, width, height);
Ejemplo n.º 2
0
 public IImage <CMYK> Pad(int width, int height)
 => ImageBase.Pad(this, CmykImage.Generate, width, height);
Ejemplo n.º 3
0
 public IImage <bool> Pad(int width, int height)
 => ImageBase.Pad(this, BinaryImage.Generate, width, height);
Ejemplo n.º 4
0
 public IImage<BGRA> Pad(int width, int height)
     => ImageBase.Pad(this, BgraImage.Generate, width, height);
Ejemplo n.º 5
0
 public IImage <HSL> Pad(int width, int height)
 => ImageBase.Pad(this, Generate, width, height);
Ejemplo n.º 6
0
 public IImage <HSV> Pad(int width, int height)
 {
     return(ImageBase.Pad(this, HsvImage.Generate, width, height));
 }
Ejemplo n.º 7
0
 public IImage <Complex> Pad(int width, int height)
 {
     return(ImageBase.Pad(this, ComplexImage.Generate, width, height));
 }