diff --git a/src/ImageSharp/Image/Image{TColor}.cs b/src/ImageSharp/Image/Image{TColor}.cs index 198d46ea8..63e73ed3e 100644 --- a/src/ImageSharp/Image/Image{TColor}.cs +++ b/src/ImageSharp/Image/Image{TColor}.cs @@ -107,6 +107,18 @@ namespace ImageSharp this.CopyProperties(other); } + /// + /// Initializes a new instance of the class + /// by making a copy from another image. + /// + /// The other image, where the clone should be made from. + /// is null. + public Image(ImageBase other) + : base(other) + { + this.CopyProperties(other); + } + /// /// Gets or sets the resolution of the image in x- direction. It is defined as /// number of dots per inch and should be an positive value.