Exemplo n.º 1
0
 public ICBase(COMPVARS cp, BITMAPINFO biIn, ICMODE mode, int fourcc)
 {
     this.pp = cp;
     this._in = biIn;
     this.mode = mode;
     this.fourcc = fourcc;
     _out = new BITMAPINFO();
 }
Exemplo n.º 2
0
        static extern int SendMessage(	
			IntPtr hwnd, 
			int wMsg,
			int wParam,
			ref BITMAPINFO lParam
			);
Exemplo n.º 3
0
 public ICDecompressor(COMPVARS cp, BITMAPINFO biIn, int fourcc)
     : base(cp, biIn, ICMODE.ICMODE_DECOMPRESS, fourcc)
 {
 }
Exemplo n.º 4
0
 public static extern bool ICSeqCompressFrameStart(
     COMPVARS pc,
     ref BITMAPINFO lpbiIn
     );
Exemplo n.º 5
0
 public static extern int ICSendMessage(int hic, int msg, ref BITMAPINFO dw1, ref BITMAPINFO dw2);
Exemplo n.º 6
0
 public static extern int ICCompressGetFormatSize(
     int hic,
     ref BITMAPINFO lpbiInput
     );