亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? encodeform.cs

?? PDF417,QR_CODE,DATAMATRIX的控件和例子
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime .InteropServices ;
using System.Drawing .Imaging ;



public class EncodeForm : System.Windows.Forms.Form
{
	#region procedure declarations, constant definitions and macros
	/*Image file reading/writing APIs and definitions */
	//DEFINES SECTION 
	public const int  PT_IMAGERW_FAIL               = 0x00000000; //An error occurred in an operation.
	public const int  PT_IMAGERW_SUCCESS            = 0x00000001; //An operation is successful.
	public const int  PT_IMAGERW_ALLOC_ERROR        = 0x00000100; //Error while allocating memory.
	public const int  PT_IMAGERW_FORMAT_UNSUPPORTED = 0x00000101; //The format of image is unsupported. 
	
	//STRUCTURES SECTION
	unsafe public struct PTIMAGE
	{
		public int            dwWidth;       //The width of the image in pixels.
		public int            dwHeight;      //The height of the image in pixels.
		public byte*          pBits;         //Pointer to the image data.
		public byte*          pPalette;      //Pointer to the palette data (RGBQUAD)for 1,4,8 bits image.
		public short          wBitsPerPixel; //Number of bits per pixel.
	}
		
	//FUNCTIONS SECTION	
	[DllImport("PtImageRW.dll", EntryPoint="PtInitImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern void PtInitImage( ref PTIMAGE pImage );
	
	[DllImport("PtImageRW.dll", EntryPoint="PtLoadImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern int PtLoadImage( string filename, ref PTIMAGE pImage, int FrameIndex );

	[DllImport("PtImageRW.dll", EntryPoint="PtSaveImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern int PtSaveImage( string filename, ref PTIMAGE pImage );

	[DllImport("PtImageRW.dll", EntryPoint="PtShowImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern void PtShowImage( ref PTIMAGE pImage, IntPtr hDC, int x, int y, float scale );

	[DllImport("PtImageRW.dll", EntryPoint="PtCreateImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern int PtCreateImage( ref	PTIMAGE pImage, int ImageSize, int PaletteSize );

	[DllImport("PtImageRW.dll", EntryPoint="PtFreeImage", SetLastError=true,
		 CharSet=CharSet.Ansi , ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall )]
	public static extern void PtFreeImage( ref PTIMAGE pImage );

	/*PDF417 symbol writing APIs and definitions.*/
	//DEFINES SECTION
	public const int  PT_PDF417ENCODE_FAIL         = 0x00000000; //An operation is Failed.
	public const int  PT_PDF417ENCODE_SUCCESS      = 0x00000001; //An operation is successful.
	public const int  PT_PDF417ENCODE_ALLOC_ERROR  = 0x00000200; //Error while allocating the memory.
	public const int  PT_PDF417ENCODE_DATA_BIG     = 0x00000201; //Data to be encoded is too big. 
	public const int  PT_PDF417ENCODE_SIZE_SMALL   = 0x00000202; //The size of image to be pasted the symbol is too small. 
	public const int  PT_PDF417ENCODE_IMAGE_INVALID= 0x00000203; //The image to be pasted is invalid.

	public const int PT_PDF417_ECCLEVEL_0         = 0x0000; //Use ECC level 0. This uses 2   codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_1         = 0x0001; //Use ECC level 1. This uses 4   codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_2         = 0x0002; //Use ECC level 2. This uses 8   codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_3         = 0x0003; //Use ECC level 3. This uses 16  codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_4         = 0x0004; //Use ECC level 4. This uses 32  codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_5         = 0x0005; //Use ECC level 5. This uses 64  codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_6         = 0x0006; //Use ECC level 6. This uses 128 codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_7         = 0x0007; //Use ECC level 7. This uses 256 codewords for error correction.
	public const int PT_PDF417_ECCLEVEL_8         = 0x0008; //Use ECC level 8. This uses 512 codewords for error correction.
	public const int PT_PDF417_ECC_PERCENT        = 0x0009; //Use the percentage to determine the ECC level.
	
	//STRUCTURES SECTION
	public unsafe struct PTPDF417ENCODE
	{
		unsafe public byte *pData;             //Pointer to the data to be encoded.		public int         nDataLength;        //Length of the data in bytes.		public int         bIsTruncated;       //Writes truncated PDF417 symbols or not.		public short       wEccPercent;        //Determines the error correction level by percentage.		public short       wEccLevel;          //Determines the ECC level for encoding a PDF417 symbol.		public short       wCols;              //Number of columns in the symbol. 		public short       wRows;              //Number of rows in the symbol.		public short       wAspectHeigh;       //The height part of the aspect ratio of the symbol.		public short       wAspectWidth;       //The width part of the aspect ratio of the symbol. 		public short       wXModule;           //The smallest element width in pixels.		public short       wModuleAspectRatio; //The ratio of a row height to XModule.		public short       wLeftSpace;         //The left   space of the symbol in pixels while generating the image. 		public short       wRightSpace;        //The right  space of the symbol in pixels while generating the image.		public short       wTopSpace;          //The top    space of the symbol in pixels while generating the image.		public short       wBottomSpace;       //The bootom space of the symbol in pixels while generating the image.
	}

	//FUNCTIONS SECTION
	[DllImport("PtPDF417Encode.dll", EntryPoint="PtPDF417EncodeRegister",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtPDF417EncodeRegister( string KeyStr );

	[DllImport("PtPDF417Encode.dll", EntryPoint="PtPDF417EncodeInit",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtPDF417EncodeInit( ref PTPDF417ENCODE pEncode );

	[DllImport("PtPDF417Encode.dll", EntryPoint="PtPDF417Encode",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern int PtPDF417Encode( ref PTPDF417ENCODE pEncode, ref PTIMAGE pImage );

	[DllImport("PtPDF417Encode.dll", EntryPoint="PtPDF417EncodeToImage",  SetLastError=true,
		CharSet=CharSet.Ansi, ExactSpelling=true,
		CallingConvention=CallingConvention.StdCall)]
	public static extern int PtPDF417EncodeToImage( ref PTPDF417ENCODE pEncode,	ref PTIMAGE pDstImage, 	int StartX,  int StartY );

	
	/*QR Code symbol writing APIs and definitions.*/
	//DEFINES SECTION
	public const int  PT_QRENCODE_FAIL             = 0x00000000; //An operation is Failed.
    public const int  PT_QRENCODE_SUCCESS          = 0x00000001; //An operation is successful.
    public const int  PT_QRENCODE_ALLOC_ERROR      = 0x00000200; //Error while allocating the memory.
    public const int  PT_QRENCODE_DATA_BIG         = 0x00000201; //Data to be encoded is too big. 
    public const int  PT_QRENCODE_SIZE_SMALL       = 0x00000202; //The size of image to be pasted the symbol is too small. 
    public const int  PT_QRENCODE_IMAGE_INVALID    = 0x00000203; //The image to be pasted is invalid. 
    
	public const int  PT_QR_ECCLEVEL_L	        = 0x0001; //Use ECC level L. (7% ) 
    public const int  PT_QR_ECCLEVEL_M          = 0x0000; //Use ECC level M. (15%)
    public const int  PT_QR_ECCLEVEL_Q          = 0x0003; //Use ECC level Q. (25%)
    public const int  PT_QR_ECCLEVEL_H	        = 0x0002; //Use ECC level H. (30%)
    
	public const int  PT_QR_VERSION_AUTO        = 0x0000; //Determine the version by the engine,then use the smallest version that can contain the data.
    public const int  PT_QR_MASKNUMBER_AUTO     = 0x0008; //Determine the mask number by the engine.
 
	//STRUCTURES SECTION
	public unsafe struct PTQRENCODE
	{
		unsafe public byte *pData;        //Pointer to the data to be encoded.		public int         nDataLength;   //Length of the data in bytes.		public short       wVersion;      //The version of the QR Code.		public short       wMaskNumber;   //The mask number of the QR Code		public short       wEccLevel;     //Determines the ECC level for encoding a QR Code symbol.		public short       wModule;       //The size of one module in pixels.		public short       wGroupTotal;   //The number of symbols that belong to the group.		public short       wGroupIndex;   //The index of the symbol in the group,		public short       wLeftSpace;    //The left   space of the symbol in pixels while generating the image.		public short       wRightSpace;   //The right  space of the symbol in pixels while generating the image.		public short       wTopSpace;     //The top    space of the symbol in pixels while generating the image.		public short       wBottomSpace;  //The right  space of the symbol in pixels while generating the image.
	}

	//FUNCTIONS SECTION
	[DllImport("PtQREncode.dll", EntryPoint="PtQREncodeRegister",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtQREncodeRegister( string KeyStr );

	[DllImport("PtQREncode.dll", EntryPoint="PtQREncodeInit",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtQREncodeInit( ref PTQRENCODE pEncode );

	[DllImport("PtQREncode.dll", EntryPoint="PtQREncode",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern int PtQREncode( ref PTQRENCODE pEncode, ref PTIMAGE pImage );

	[DllImport("PtQREncode.dll", EntryPoint="PtQREncodeToImage",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern int PtQREncodeToImage( ref PTQRENCODE pEncode,	ref PTIMAGE pDstImage, 	int StartX,  int StartY );

	
	/*Data Matrix symbol writing APIs and definitions.*/
	//DEFINES SECTION
	public const int  PT_DMENCODE_FAIL             = 0x00000000; //An operation is Failed.
	public const int  PT_DMENCODE_SUCCESS          = 0x00000001; //An operation is successful.
	public const int  PT_DMENCODE_ALLOC_ERROR      = 0x00000200; //Error while allocating the memory.
	public const int  PT_DMENCODE_DATA_BIG         = 0x00000201; //Data to be encoded is too big. 
	public const int  PT_DMENCODE_SIZE_SMALL       = 0x00000202; //The size of image to be pasted the symbol is too small. 
	public const int  PT_DMENCODE_IMAGE_INVALID    = 0x00000203; //The image to be pasted is invalid. 
	
	public const int PT_DM_SQUARE_AUTO    =0;  //Use the smallest square size thatcan contain the data.
    public const int PT_DM_10x10          =1;  //Data Matrix Type 10x10.
	public const int PT_DM_12x12          =2;  //Data Matrix Type 12x12.
	public const int PT_DM_14x14          =3;  //Data Matrix Type 14x14.
	public const int PT_DM_16x16          =4;  //Data Matrix Type 16x16.
	public const int PT_DM_18x18          =5;  //Data Matrix Type 18x18.
	public const int PT_DM_20x20          =6;  //Data Matrix Type 20x20.
	public const int PT_DM_22x22          =7;  //Data Matrix Type 22x22.
	public const int PT_DM_24x24          =8;  //Data Matrix Type 24x24.
	public const int PT_DM_26x26          =9;  //Data Matrix Type 26x26.
	public const int PT_DM_32x32          =10; //Data Matrix Type 32x32.
	public const int PT_DM_36x36          =11; //Data Matrix Type 36x36.
	public const int PT_DM_40x40          =12; //Data Matrix Type 40x40.
	public const int PT_DM_44x44          =13; //Data Matrix Type 44x44.
	public const int PT_DM_48x48          =14; //Data Matrix Type 48x48.
	public const int PT_DM_52x52          =15; //Data Matrix Type 52x52.
	public const int PT_DM_64x64          =16; //Data Matrix Type 64x64.
	public const int PT_DM_72x72          =17; //Data Matrix Type 72x72.
	public const int PT_DM_80x80          =18; //Data Matrix Type 80x80.
	public const int PT_DM_88x88          =19; //Data Matrix Type 88x88.
	public const int PT_DM_96x96          =20; //Data Matrix Type 96x96.
	public const int PT_DM_104x104        =21; //Data Matrix Type 104x104.
	public const int PT_DM_120x120        =22; //Data Matrix Type 120x120.
	public const int PT_DM_132x132        =23; //Data Matrix Type 132x132.
	public const int PT_DM_144x144        =24; //Data Matrix Type 144x144.
	public const int PT_DM_8x18           =25; //Data Matrix Type 8x18.
	public const int PT_DM_8x32           =26; //Data Matrix Type 8x32.
	public const int PT_DM_12x26          =27; //Data Matrix Type 12x26.
	public const int PT_DM_12x36          =28; //Data Matrix Type 12x36.
	public const int PT_DM_16x36          =29; //Data Matrix Type 16x36.
	public const int PT_DM_16x48          =30; //Data Matrix Type 16x48.
	public const int PT_DM_RECTANGLE_AUTO =31; //use the smallest rectangular size that can contain the data.

	
	//STRUCTURES SECTION
	public unsafe struct PTDMENCODE
	{
		unsafe public byte *pData;        //Pointer to the data to be encoded.		public int         nDataLength;   //Length of the data in bytes.		public short       wSymbolSize;   //The symbol size.		public short       wModule;       //The size of one module in pixels.		public short       wGroupTotal;   //The number of symbols that belong to the group.		public short       wGroupIndex;   //The index of the symbol in the group		public short       wFileIDHigh;   //The high byte of the file ID number.		public short       wFileIDLow;    //The low byte of the file ID number.		public short       wLeftSpace;    //The left   space of the symbol in pixels while generating the image. 		public short       wRightSpace;   //The right  space of the symbol in pixels while generating the image. 		public short       wTopSpace;     //The top    space of the symbol in pixels while generating the image. 		public short       wBottomSpace;  //The bottom space of the symbol in pixels while generating the image. 
	}

	//FUNCTIONS SECTION
	[DllImport("PtDMEncode.dll", EntryPoint="PtDMEncodeRegister",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtDMEncodeRegister( string KeyStr );

	[DllImport("PtDMEncode.dll", EntryPoint="PtDMEncodeInit",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern void PtDMEncodeInit( ref PTDMENCODE pEncode );

	[DllImport("PtDMEncode.dll", EntryPoint="PtDMEncode",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern int PtDMEncode( ref PTDMENCODE pEncode, ref PTIMAGE pImage );

	[DllImport("PtDMEncode.dll", EntryPoint="PtDMEncodeToImage",  SetLastError=true,
		 CharSet=CharSet.Ansi, ExactSpelling=true,
		 CallingConvention=CallingConvention.StdCall)]
	public static extern int PtDMEncodeToImage( ref PTDMENCODE pEncode,	ref PTIMAGE pDstImage, 	int StartX,  int StartY );

    #endregion


	private   System.ComponentModel.Container components = null; 
	private   System.Windows.Forms.TextBox StrTextBox;
	private   System.Windows.Forms.PictureBox BarPicBox; 
	private   System.Windows.Forms.Button EncodePDF417Btn;
	private   System.Windows.Forms.Button EncodeQRBtn;
	private   System.Windows.Forms.Button EncodeDataMatrixBtn; 

	private   PTIMAGE                m_image;
	private   PTPDF417ENCODE         m_PDF417Encode ;
	private   PTQRENCODE             m_QREncode ;
	private   PTDMENCODE             m_DMEncode ;
	private   Image                  m_BarcodeImg;
	private   Image                  m_BlankImg;		
		
	#region windows procedure

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91蜜桃婷婷狠狠久久综合9色| 国产盗摄视频一区二区三区| 亚洲女同一区二区| 久久色中文字幕| 日韩精品一区二| 精品日本一线二线三线不卡| 91精品国产综合久久精品app| 9191国产精品| 精品久久久久99| 国产三级精品三级在线专区| 国产午夜精品在线观看| 久久精品日韩一区二区三区| 久久久久国产精品免费免费搜索| 久久午夜免费电影| 国产精品福利影院| 亚洲综合视频网| 日本vs亚洲vs韩国一区三区二区| 日韩成人免费电影| 精品一区免费av| 大桥未久av一区二区三区中文| 国产精品88av| 91免费观看国产| 欧美精品九九99久久| 日韩欧美区一区二| 国产精品伦理一区二区| 亚洲一区二区在线免费观看视频 | 久久成人免费网站| 国精品**一区二区三区在线蜜桃| 国产盗摄女厕一区二区三区| 一本到高清视频免费精品| 欧美精品一级二级| 国产亚洲欧美中文| 一区二区三区色| 蜜桃视频第一区免费观看| 成人高清在线视频| 欧美日韩国产片| 国产欧美一区二区三区在线老狼| 一区二区三区日韩| 久草在线在线精品观看| 99国产精品国产精品久久| 国产一区美女在线| 久久综合色一综合色88| 亚洲视频一区二区在线| 另类小说欧美激情| 91免费看`日韩一区二区| 欧美成人三级在线| 一区二区三区国产豹纹内裤在线| 久久福利视频一区二区| 欧美在线制服丝袜| 国产农村妇女精品| 久久99久久99精品免视看婷婷| 91在线国内视频| 久久久久久久久免费| 亚洲高清视频中文字幕| 成a人片国产精品| 欧美成人在线直播| 手机精品视频在线观看| 91色综合久久久久婷婷| 久久欧美一区二区| 蜜桃91丨九色丨蝌蚪91桃色| 一本久久精品一区二区| 欧美韩日一区二区三区四区| 美国十次综合导航| 欧美日韩精品一区二区天天拍小说| 久久九九久久九九| 裸体健美xxxx欧美裸体表演| 欧美影院午夜播放| 亚洲美女在线国产| 色呦呦日韩精品| 中文字幕永久在线不卡| 高清久久久久久| 国产日产欧产精品推荐色| 国产麻豆精品在线观看| 91精品欧美综合在线观看最新| 亚洲一区在线观看免费观看电影高清 | ...中文天堂在线一区| 国产盗摄精品一区二区三区在线| 日韩视频国产视频| 蜜臀av性久久久久蜜臀av麻豆| 91精品国产综合久久精品麻豆| 亚洲成人www| 国产精品视频免费| 成人免费视频视频| 国产精品不卡一区| 欧洲精品在线观看| 亚洲成人黄色影院| 日韩一区二区在线看片| 青青草国产成人av片免费| 日韩视频一区二区| 国产精品18久久久久久久久| 国产三级一区二区| 972aa.com艺术欧美| 亚洲三级电影全部在线观看高清| 色综合久久天天| 五月婷婷色综合| 日韩欧美国产麻豆| 国产成人av福利| 一区二区三区四区乱视频| 欧美视频一区二区| 麻豆精品在线观看| 国产欧美日韩不卡免费| 91香蕉国产在线观看软件| 亚洲图片一区二区| 91精品国产综合久久精品麻豆| 久久不见久久见免费视频1| 久久精品亚洲麻豆av一区二区 | 久久久久久久久免费| 99精品久久免费看蜜臀剧情介绍| 伊人色综合久久天天| 日韩视频一区二区三区在线播放 | 欧美亚洲一区二区在线| 伦理电影国产精品| 中文字幕在线播放不卡一区| 在线播放/欧美激情| 国产成都精品91一区二区三| 一区二区三区久久久| 久久网站最新地址| 欧美日韩激情一区二区| 国产成人av福利| 日韩高清欧美激情| 亚洲欧美怡红院| 精品日韩av一区二区| 色狠狠色狠狠综合| 国产盗摄精品一区二区三区在线| 亚洲一区二区三区四区在线免费观看| 精品国产精品一区二区夜夜嗨| 99综合影院在线| 国产一区二区日韩精品| 亚洲欧美日韩久久| 国产亚洲成av人在线观看导航 | 国产**成人网毛片九色| 麻豆精品视频在线观看| 亚洲国产精品久久久久婷婷884| 国产性做久久久久久| 欧美一区二区三区四区五区| 91亚洲精品一区二区乱码| 国产精品一区二区男女羞羞无遮挡| 日韩电影在线观看电影| 一区二区不卡在线视频 午夜欧美不卡在 | 99久久精品免费精品国产| 麻豆91在线播放免费| 亚洲成人一二三| 亚洲五月六月丁香激情| 亚洲欧美aⅴ...| 国产精品久久久99| 亚洲国产精品99久久久久久久久| 日韩午夜三级在线| 欧美日韩和欧美的一区二区| 一本大道久久a久久精品综合| 国产又粗又猛又爽又黄91精品| 午夜精品一区二区三区电影天堂| 一区二区三区四区在线播放| 亚洲女人的天堂| 亚洲欧美激情视频在线观看一区二区三区| 国产日韩欧美精品电影三级在线| 91精品国产91热久久久做人人| 欧美猛男gaygay网站| 在线看国产一区| 欧美日韩一级片在线观看| 欧美日韩久久不卡| 欧美日韩成人激情| 91精品一区二区三区久久久久久| 欧美男男青年gay1069videost| 91精品国产一区二区人妖| 日韩欧美国产电影| 国产日韩成人精品| 一区在线观看免费| 亚洲成人免费在线观看| 日本色综合中文字幕| 久久精品国产免费看久久精品| 精品在线亚洲视频| 不卡一区二区三区四区| 色94色欧美sute亚洲线路一久| 欧美色精品天天在线观看视频| 欧美精品免费视频| 国产无遮挡一区二区三区毛片日本| 国产精品色在线| 亚洲一级二级在线| 久久成人久久爱| 99久久er热在这里只有精品15 | 一个色综合av| 免费在线观看一区二区三区| 狠狠色丁香久久婷婷综合_中| 国产成人亚洲综合a∨猫咪| 91亚洲精品久久久蜜桃| 欧美日韩大陆在线| 国产亚洲污的网站| 亚洲久草在线视频| 三级不卡在线观看| av毛片久久久久**hd| 91精品国产91久久久久久一区二区 | 日韩精品一区二区三区在线观看 | 在线精品视频免费播放| 欧美电影免费观看完整版| 一区免费观看视频| 精品一区二区三区av| 欧洲激情一区二区| 久久久99久久| 日本欧美一区二区| 色综合久久中文字幕|