public MagickScript(IXPathNavigable xml)
     : this(AssemblyHelper.CreateInstance(Types.MagickScript, new Type[] { typeof(IXPathNavigable) }, xml))
 {
 }
Example #2
0
 public DrawableFont(String family, FontStyleType style, FontWeight weight, FontStretch stretch)
     : base(AssemblyHelper.CreateInstance(Types.DrawableFont, new Type[] { typeof(String), Types.FontStyleType, Types.FontWeight, Types.FontStretch }, family, style, weight, stretch))
 {
 }
Example #3
0
 public ColorProfile(String fileName)
     : base(AssemblyHelper.CreateInstance(Types.ColorProfile, new Type[] { typeof(String) }, fileName))
 {
 }
Example #4
0
 public DrawableAffine(Matrix matrix)
     : base(AssemblyHelper.CreateInstance(Types.DrawableAffine, new Type[] { typeof(Matrix) }, matrix))
 {
 }
 public ColorProfile(Byte[] data)
     : base(AssemblyHelper.CreateInstance(Types.ColorProfile, new Type[] { typeof(Byte[]) }, data))
 {
 }
 public PixelStorageSettings()
     : this(AssemblyHelper.CreateInstance(Types.PixelStorageSettings))
 {
 }
Example #7
0
 public PathCurvetoRel(PathCurveto pathCurveto)
     : base(AssemblyHelper.CreateInstance(Types.PathCurvetoRel, new Type[] { Types.PathCurveto }, GraphicsMagick.PathCurveto.GetInstance(pathCurveto)))
 {
 }
 public PathLinetoAbs(IEnumerable <Coordinate> coordinates)
     : base(AssemblyHelper.CreateInstance(Types.PathLinetoAbs, new Type[] { Types.IEnumerableCoordinate }, Coordinate.CastIEnumerable(coordinates)))
 {
 }
 public PathLinetoAbs(Coordinate coordinate)
     : base(AssemblyHelper.CreateInstance(Types.PathLinetoAbs, new Type[] { Types.Coordinate }, GraphicsMagick.Coordinate.GetInstance(coordinate)))
 {
 }
Example #10
0
 public Pixel(Int32 x, Int32 y, Byte[] value)
     : this(AssemblyHelper.CreateInstance(Types.Pixel, new Type[] { typeof(Int32), typeof(Int32), typeof(Byte[]) }, x, y, value))
 {
 }
 public SparseColorArg(Double x, Double y, MagickColor color)
     : this(AssemblyHelper.CreateInstance(Types.SparseColorArg, new Type[] { typeof(Double), typeof(Double), Types.MagickColor }, x, y, GraphicsMagick.MagickColor.GetInstance(color)))
 {
 }
Example #12
0
 public Pixel(Int32 x, Int32 y, Int32 channels)
     : this(AssemblyHelper.CreateInstance(Types.Pixel, new Type[] { typeof(Int32), typeof(Int32), typeof(Int32) }, x, y, channels))
 {
 }
 public DrawableDashOffset(Double offset)
     : base(AssemblyHelper.CreateInstance(Types.DrawableDashOffset, new Type[] { typeof(Double) }, offset))
 {
 }
Example #14
0
 public PointD()
     : this(AssemblyHelper.CreateInstance(Types.PointD))
 {
 }
 public ConvolveMatrix(Int32 order)
     : base(AssemblyHelper.CreateInstance(Types.ConvolveMatrix, new Type[] { typeof(Int32) }, order))
 {
 }
 public MagickColor(Byte red, Byte green, Byte blue)
     : this(AssemblyHelper.CreateInstance(Types.MagickColor, new Type[] { typeof(Byte), typeof(Byte), typeof(Byte) }, red, green, blue))
 {
 }
 public PixelStorageSettings(StorageType type, String mapping)
     : this(AssemblyHelper.CreateInstance(Types.PixelStorageSettings, new Type[] { Types.StorageType, typeof(String) }, type, mapping))
 {
 }
 public MagickColor(Color color)
     : this(AssemblyHelper.CreateInstance(Types.MagickColor, new Type[] { typeof(Color) }, color))
 {
 }
Example #19
0
 public PathCurvetoRel(IEnumerable <PathCurveto> pathCurvetos)
     : base(AssemblyHelper.CreateInstance(Types.PathCurvetoRel, new Type[] { Types.IEnumerablePathCurveto }, PathCurveto.CastIEnumerable(pathCurvetos)))
 {
 }
 public MagickColor()
     : this(AssemblyHelper.CreateInstance(Types.MagickColor))
 {
 }
 public DrawableScaling(Double x, Double y)
     : base(AssemblyHelper.CreateInstance(Types.DrawableScaling, new Type[] { typeof(Double), typeof(Double) }, x, y))
 {
 }
Example #22
0
 public DrawableStrokeWidth(Double width)
     : base(AssemblyHelper.CreateInstance(Types.DrawableStrokeWidth, new Type[] { typeof(Double) }, width))
 {
 }
Example #23
0
 public DrawableAffine(Double scaleX, Double scaleY, Double shearX, Double shearY, Double translateX, Double translateY)
     : base(AssemblyHelper.CreateInstance(Types.DrawableAffine, new Type[] { typeof(Double), typeof(Double), typeof(Double), typeof(Double), typeof(Double), typeof(Double) }, scaleX, scaleY, shearX, shearY, translateX, translateY))
 {
 }
Example #24
0
 public PathLinetoVerticalRel(Double x)
     : base(AssemblyHelper.CreateInstance(Types.PathLinetoVerticalRel, new Type[] { typeof(Double) }, x))
 {
 }
 public DrawableStrokeLineCap(LineCap lineCap)
     : base(AssemblyHelper.CreateInstance(Types.DrawableStrokeLineCap, new Type[] { Types.LineCap }, lineCap))
 {
 }
Example #26
0
 public IptcProfile()
     : base(AssemblyHelper.CreateInstance(Types.IptcProfile))
 {
 }
Example #27
0
 public DrawableFont(String family)
     : base(AssemblyHelper.CreateInstance(Types.DrawableFont, new Type[] { typeof(String) }, family))
 {
 }
 public ConvolveMatrix(Int32 order, params Double[] values)
     : base(AssemblyHelper.CreateInstance(Types.ConvolveMatrix, new Type[] { typeof(Int32), typeof(Double[]) }, order, values))
 {
 }
Example #29
0
 public ColorProfile(Stream stream)
     : base(AssemblyHelper.CreateInstance(Types.ColorProfile, new Type[] { typeof(Stream) }, stream))
 {
 }
 public MagickScript(String fileName)
     : this(AssemblyHelper.CreateInstance(Types.MagickScript, new Type[] { typeof(String) }, fileName))
 {
 }