Exemple #1
0
 /// <summary>
 /// Constructs a Jpeg-object, using a filename.
 /// </summary>
 /// <remarks>
 /// Deprecated, use Image.GetInstance(...) to create an Image
 /// </remarks>
 /// <param name="filename">a string-representation of the file that contains the Image.</param>
 public Jpeg(string filename) : this(Image.ToURL(filename))
 {
 }
Exemple #2
0
 /// <summary>
 /// Constructs a Jpeg-object, using a filename.
 /// </summary>
 /// <remarks>
 /// Deprecated, use Image.GetInstance(...) to create an Image
 /// </remarks>
 /// <param name="filename">a string-representation of the file that contains the Image.</param>
 /// <param name="width">the scaled width</param>
 /// <param name="height">the scaled height</param>
 public Jpeg(string filename, float width, float height) : this(Image.ToURL(filename), width, height)
 {
 }
Exemple #3
0
 /// <summary>
 /// Constructs an ImgWMF-object, using a filename.
 /// </summary>
 /// <param name="filename">a string-representation of the file that contains the image.</param>
 public ImgWMF(string filename) : this(Image.ToURL(filename))
 {
 }