Ejemplo n.º 1
0
 public ImageDefinition(Point topLeft, Size size, ImageType imageType, Stream sourceStream, XObject xObject)
     : this(topLeft, size, imageType)
 {
     _sourceStream = sourceStream;
     _xObject = xObject;
 }
Ejemplo n.º 2
0
 public ImageDefinition(Point topLeft, Size size, ImageType imageType, string sourceFile, XObject xObject)
     : this(topLeft, size, imageType)
 {
     _sourceFile = sourceFile;
     _xObject = xObject;
 }