/// <summary> /// Create an <c>ImageSet</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 ImageSet(Bitmap images,int count,Color transparentColor) { this.images = new ImageCollection(images,count,transparentColor) ; }
/// <summary> /// Create an <c>ImageSet</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 ImageSet(Bitmap images,int count) { this.images = new ImageCollection(images,count) ; }
/// <summary> /// Create an empty <c>ImageSet</c> with the specified /// transparent color mask value /// </summary> public ImageSet(Color transparentColor) { images = new ImageCollection(transparentColor) ; }
/// <summary> /// Create an empty <c>ImageSet</c> with the specified /// canonical <see cref="System.Drawing.Size"/> and /// transparent color mask value /// </summary> public ImageSet(Size size,Color transparentColor) { images = new ImageCollection(size,transparentColor) ; }
/// <summary> /// Create an empty <c>ImageSet</c> with the specified /// canonical <see cref="System.Drawing.Size"/> /// </summary> public ImageSet(Size size) { images = new ImageCollection(size) ; }
/// <summary> /// Create an empty <c>ImageSet</c> /// </summary> public ImageSet() { images = new ImageCollection() ; }