예제 #1
0
파일: Picture.cs 프로젝트: acinep/net7mma-1
 public static Picture Create(int width, int height, ColorSpace colorSpace)
 {
     return(Create(width, height, colorSpace, null));
 }
예제 #2
0
파일: Picture.cs 프로젝트: acinep/net7mma-1
 public Picture(int width, int height, int[][] data, ColorSpace color)
     : this(width, height, data, color, new Rect(0, 0, width, height))
 {
 }