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