Exemplo n.º 1
0
 /// <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) ;
 }
Exemplo n.º 2
0
 /// <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) ;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create an empty <c>ImageSet</c> with the specified
 /// transparent color mask value
 /// </summary>
 public ImageSet(Color transparentColor)
 {
     images = new ImageCollection(transparentColor) ;
 }
Exemplo n.º 4
0
 /// <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) ;
 }
Exemplo n.º 5
0
 /// <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) ;
 }
Exemplo n.º 6
0
 /// <summary>
 /// Create an empty <c>ImageSet</c>
 /// </summary>
 public ImageSet()
 {
     images = new ImageCollection() ;
 }