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