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