/// <summary> /// Create an <c>PSImgSet</c> from the specified <i>image strip</i> /// which contains the specified number of images and transparent /// color mask value /// </summary> /// <param name="images">The image strip</param> /// <param name="count">Number of images in the strip</param> /// <param name="transparentColor">Transparent color mask value</param> public PSImgSet(Bitmap images,int count,Color transparentColor) { this.images = new PSImgCollection(images,count,transparentColor) ; }
/// <summary> /// Create an <c>PSImgSet</c> from the specified <i>image strip</i> /// which contains the specified number of images /// </summary> /// <param name="images">The image strip</param> /// <param name="count">Number of images in the strip</param> public PSImgSet(Bitmap images,int count) { this.images = new PSImgCollection(images,count) ; }
/// <summary> /// Create an empty <c>PSImgSet</c> with the specified /// transparent color mask value /// </summary> public PSImgSet(Color transparentColor) { images = new PSImgCollection(transparentColor) ; }
/// <summary> /// Create an empty <c>PSImgSet</c> with the specified /// canonical <see cref="System.Drawing.Size"/> and /// transparent color mask value /// </summary> public PSImgSet(Size size,Color transparentColor) { images = new PSImgCollection(size,transparentColor) ; }
/// <summary> /// Create an empty <c>PSImgSet</c> with the specified /// canonical <see cref="System.Drawing.Size"/> /// </summary> public PSImgSet(Size size) { images = new PSImgCollection(size) ; }
/// <summary> /// Create an empty <c>PSImgSet</c> /// </summary> public PSImgSet() { images = new PSImgCollection() ; }