コード例 #1
0
ファイル: Image.cs プロジェクト: zhangzheng1205/ImageLibrary-
 public IImage <double> Pad(int width, int height)
 => ImageBase.Pad(this, Image.Generate, width, height);
コード例 #2
0
 public IImage <CMYK> Pad(int width, int height)
 => ImageBase.Pad(this, CmykImage.Generate, width, height);
コード例 #3
0
 public IImage <bool> Pad(int width, int height)
 => ImageBase.Pad(this, BinaryImage.Generate, width, height);
コード例 #4
0
 public IImage<BGRA> Pad(int width, int height)
     => ImageBase.Pad(this, BgraImage.Generate, width, height);
コード例 #5
0
 public IImage <HSL> Pad(int width, int height)
 => ImageBase.Pad(this, Generate, width, height);
コード例 #6
0
 public IImage <HSV> Pad(int width, int height)
 {
     return(ImageBase.Pad(this, HsvImage.Generate, width, height));
 }
コード例 #7
0
 public IImage <Complex> Pad(int width, int height)
 {
     return(ImageBase.Pad(this, ComplexImage.Generate, width, height));
 }