예제 #1
0
 public ImageInformation(string sourcePath, string destinationPath, int widthDp, int heightDp, int dpi, ColorInfo color, params KeyValuePair <string, string>[] attributes)
 {
     SourcePath      = sourcePath;
     DestinationPath = destinationPath;
     Color           = color;
     WidthDp         = widthDp;
     HeightDp        = heightDp;
     Dpi             = dpi;
     Attributes      = attributes;
 }
예제 #2
0
 public ImageInformation(string sourcePath, string destinationPath, int widthDp, int heightDp, int dpi, ColorInfo color)
     : this(sourcePath, destinationPath, widthDp, heightDp, dpi, color, new KeyValuePair <string, string> [0])
 {
 }