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