Example #1
0
 public static Picture Create(int width, int height, ColorSpace colorSpace)
 {
     return(Create(width, height, colorSpace, null));
 }
Example #2
0
 public Picture(int width, int height, int[][] data, ColorSpace color)
     : this(width, height, data, color, new Rect(0, 0, width, height))
 {
 }