亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > .NET > 正文

C# CUR類實現代碼

2024-07-10 13:20:02
字體:
來源:轉載
供稿:網友

復制代碼 代碼如下:


using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Runtime.InteropServices;
namespace Zgke.MyImage.ImageFile
{
/// <summary>
/// CUR文件操作類
/// zgke@sina.com
/// qq:116149
/// </summary>
public class ImageCur
{
private class CurHead
{
private byte[] m_Retain = new byte[2];
private byte[] m_Type = new byte[] { 0x02, 0x00 };
private byte[] m_ImageCount = new byte[2];
private byte m_ImageWidth;
private byte m_ImageHeight;
private byte m_ColorCount;
private byte[] m_NotUser = new byte[5];
private byte[] m_ImageLength = new byte[4];
private byte[] m_ImageRVA = new byte[4];
/// <summary>
/// 圖形高
/// </summary>
public byte ImageHeight { get { return m_ImageHeight; } set { m_ImageHeight = value; } }
/// <summary>
/// 圖象個數
/// </summary>
public ushort ImageCount { get { return BitConverter.ToUInt16(m_ImageCount, 0); } set { m_ImageCount = BitConverter.GetBytes(value); } }
/// <summary>
/// 圖形寬
/// </summary>
public byte ImageWidth { get { return m_ImageWidth; } set { m_ImageWidth = value; } }
/// <summary>
/// 色彩數 (256以下色用)
/// </summary>
public byte ColorCount { get { return m_ColorCount; } set { m_ColorCount = value; } }
/// <summary>
/// 圖象數據塊的長度
/// </summary>
public uint ImageLength { get { return BitConverter.ToUInt32(m_ImageLength, 0); } set { m_ImageLength = BitConverter.GetBytes(value); } }
/// <summary>
/// 圖象數據塊相對于文件頭部的偏移量
/// </summary>
public uint ImageRVA { get { return BitConverter.ToUInt32(m_ImageRVA, 0); } set { m_ImageRVA = BitConverter.GetBytes(value); } }
public CurHead()
{
}
public CurHead(byte[] p_Data)
{
ImageCount = BitConverter.ToUInt16(p_Data, 4);
ImageHeight = p_Data[7];
ImageWidth = p_Data[6];
ColorCount = p_Data[8];
ImageLength = BitConverter.ToUInt32(p_Data, 14);
ImageRVA = BitConverter.ToUInt32(p_Data, 18);
}
public byte[] GetByte()
{
byte[] _ReturnBytes = new byte[22];
_ReturnBytes[0] = m_Retain[0];
_ReturnBytes[1] = m_Retain[1];
_ReturnBytes[2] = m_Retain[0];
_ReturnBytes[3] = m_Retain[1];
_ReturnBytes[4] = m_ImageCount[0];
_ReturnBytes[5] = m_ImageCount[1];
_ReturnBytes[6] = m_ImageWidth;
_ReturnBytes[7] = m_ImageHeight;
_ReturnBytes[8] = m_ColorCount;
_ReturnBytes[14] = m_ImageLength[0];
_ReturnBytes[15] = m_ImageLength[1];
_ReturnBytes[16] = m_ImageLength[2];
_ReturnBytes[17] = m_ImageLength[3];
_ReturnBytes[18] = m_ImageRVA[0];
_ReturnBytes[19] = m_ImageRVA[1];
_ReturnBytes[20] = m_ImageRVA[2];
_ReturnBytes[21] = m_ImageRVA[3];
return _ReturnBytes;
}
public byte[] GetImageByte()
{
byte[] _ReturnBytes = new byte[16];
_ReturnBytes[0] = m_ImageWidth;
_ReturnBytes[1] = m_ImageHeight;
_ReturnBytes[2] = m_ColorCount;
_ReturnBytes[8] = m_ImageLength[0];
_ReturnBytes[9] = m_ImageLength[1];
_ReturnBytes[10] = m_ImageLength[2];
_ReturnBytes[11] = m_ImageLength[3];
_ReturnBytes[12] = m_ImageRVA[0];
_ReturnBytes[13] = m_ImageRVA[1];
_ReturnBytes[14] = m_ImageRVA[2];
_ReturnBytes[15] = m_ImageRVA[3];
return _ReturnBytes;
}
}
private CurHead m_CurHead;
private Bitmap m_CurImage;
private IList<Image> m_CurList =new List<Image>();
public ImageCur(string p_FileFullName)
{
byte[] _FileBytes = File.ReadAllBytes(p_FileFullName);
ImageCurBytes(_FileBytes);
}
public ImageCur(byte[] p_FileBytes)
{
ImageCurBytes(p_FileBytes);
}
private void ImageCurBytes(byte[] p_Bytes)
{
m_CurHead = new CurHead(p_Bytes);
for (int i = 0; i != m_CurHead.ImageCount; i++)
{
m_CurHead.ImageWidth = (byte)BitConverter.ToInt16(p_Bytes, (int)m_CurHead.ImageRVA + 4);
m_CurHead.ImageHeight = (byte)(BitConverter.ToInt16(p_Bytes, (int)m_CurHead.ImageRVA + 8) / 2);
short _Piex = BitConverter.ToInt16(p_Bytes, (int)m_CurHead.ImageRVA + 14);
LoadImgae(_Piex, p_Bytes, (int)m_CurHead.ImageRVA + 40);
m_CurList.Add((Image)m_CurImage);
byte[] _Value = new byte[4];
_Value[3] = p_Bytes[((i + 1) * 16) + 18 + 3];
_Value[2] = p_Bytes[((i + 1) * 16) + 18 + 2];
_Value[1] = p_Bytes[((i + 1) * 16) + 18 + 1];
_Value[0] = p_Bytes[((i + 1) * 16) + 18];
m_CurHead.ImageRVA = BitConverter.ToUInt32(_Value, 0);
}
}
public ImageCur()
{
}
#region Read
private void Load32(byte[] p_FileBytes, byte[] p_NewData, int p_ReadIndex, int p_Width, int p_Height, int p_MashIndex, BitmapData p_NewBitmapData)
{
int _WriteIndex = 0;
for (int i = p_NewBitmapData.Height - 1; i != -1; i--)
{
_WriteIndex = i * p_NewBitmapData.Stride;
for (int z = 0; z != p_NewBitmapData.Width; z++)
{
p_NewData[_WriteIndex + (z * 4)] = p_FileBytes[p_ReadIndex];
p_NewData[_WriteIndex + (z * 4) + 1] = p_FileBytes[p_ReadIndex + 1];
p_NewData[_WriteIndex + (z * 4) + 2] = p_FileBytes[p_ReadIndex + 2];
p_NewData[_WriteIndex + (z * 4) + 3] = p_FileBytes[p_ReadIndex + 3];
p_ReadIndex += 4;
}
}
}
private void Load24(byte[] p_FileBytes, byte[] p_NewData, int p_ReadIndex, int p_Width, int p_Height, int p_MashIndex, BitmapData p_NewBitmapData)
{
int _WriteIndex = 0;
int _MashStride = p_Width / 8;
if (p_Width % 8 != 0) _MashStride++;
if (_MashStride % 4 != 0) _MashStride += _MashStride % 4;
byte[] _MashBytes = new byte[_MashStride * p_Height];
Array.Copy(p_FileBytes, p_MashIndex, _MashBytes, 0, _MashBytes.Length);
for (int i = 0; i != _MashBytes.Length; i++)
{
_MashBytes[i] = ConvertByte.OperateData.ReverseByte(_MashBytes[i]);
}
BitArray _MashArray = new BitArray(_MashBytes);
for (int i = p_NewBitmapData.Height - 1; i != -1; i--)
{
p_MashIndex = (p_Height - 1 - i) * (_MashStride * 8);
_WriteIndex = i * p_NewBitmapData.Stride;
for (int z = 0; z != p_NewBitmapData.Width; z++)
{
p_NewData[_WriteIndex + (z * 4)] = p_FileBytes[p_ReadIndex];
p_NewData[_WriteIndex + (z * 4) + 1] = p_FileBytes[p_ReadIndex + 1];
p_NewData[_WriteIndex + (z * 4) + 2] = p_FileBytes[p_ReadIndex + 2];
p_NewData[_WriteIndex + (z * 4) + 3] = 0xFF;
if (_MashArray[p_MashIndex])p_NewData[_WriteIndex + (z * 4) + 3] = 0x00; //
p_ReadIndex += 3;
p_MashIndex++;
}
}
}
private void Load8(byte[] p_FileBytes, byte[] p_NewData, int p_ReadIndex, int p_Width, int p_Height, int p_MashIndex, BitmapData p_NewBitmapData)
{
int _WriteIndex = 0;
Hashtable _ColorHashTable = new Hashtable();
for (int i = 0; i != 256; i++)
{
_ColorHashTable.Add(i.ToString(), Color.FromArgb(p_FileBytes[p_ReadIndex + 3], p_FileBytes[p_ReadIndex + 2], p_FileBytes[p_ReadIndex + 1], p_FileBytes[p_ReadIndex]));
p_ReadIndex += 4;
}
p_MashIndex = p_Width * p_Height + p_ReadIndex;
int _MashStride = p_Width / 8;
if (p_Width % 8 != 0) _MashStride++;
if (_MashStride % 4 !=0) _MashStride += _MashStride % 4;
byte[] _MashBytes = new byte[_MashStride * p_Height];
Array.Copy(p_FileBytes, p_MashIndex, _MashBytes, 0, _MashBytes.Length);
for (int i = 0; i != _MashBytes.Length; i++)
{
_MashBytes[i] = ConvertByte.OperateData.ReverseByte(_MashBytes[i]);
}
BitArray _MashArray = new BitArray(_MashBytes);
for (int i = p_NewBitmapData.Height - 1; i != -1; i--)
{
p_MashIndex = (p_Height - 1 - i) * (_MashStride * 8);
_WriteIndex = i * p_NewBitmapData.Stride;
for (int z = 0; z != p_NewBitmapData.Width; z++)
{
byte _Index = p_FileBytes[p_ReadIndex];
Color _SetColor = (Color)_ColorHashTable[_Index.ToString()];
p_NewData[_WriteIndex + (z * 4)] = (byte)_SetColor.B;
p_NewData[_WriteIndex + (z * 4) + 1] = (byte)_SetColor.G;
p_NewData[_WriteIndex + (z * 4) + 2] = (byte)_SetColor.R;
p_NewData[_WriteIndex + (z * 4) + 3] = 0xFF;
if (_MashArray[p_MashIndex])p_NewData[_WriteIndex + (z * 4) + 3] = 0x00; //
p_ReadIndex++;
p_MashIndex++;
}
}
}
private void Load4(byte[] p_FileBytes, byte[] p_NewData, int p_ReadIndex, int p_Width, int p_Height, int p_MashIndex, BitmapData p_NewBitmapData)
{
int _WriteIndex = 0;
Hashtable _ColorHashTable = new Hashtable();
for (int i = 0; i != 16; i++)
{
_ColorHashTable.Add(i.ToString(), Color.FromArgb(p_FileBytes[p_ReadIndex + 3], p_FileBytes[p_ReadIndex + 2], p_FileBytes[p_ReadIndex + 1], p_FileBytes[p_ReadIndex]));
p_ReadIndex += 4;
}
p_MashIndex = (p_Width * p_Height / 2) + p_ReadIndex;
int _MashStride = p_Width / 8;
if (p_Width % 8 != 0) _MashStride++;
if (_MashStride % 4 != 0) _MashStride += _MashStride % 4;
byte[] _MashBytes = new byte[_MashStride * p_Height];
Array.Copy(p_FileBytes, p_MashIndex, _MashBytes, 0, _MashBytes.Length);
for (int i = 0; i != _MashBytes.Length; i++)
{
_MashBytes[i] = ConvertByte.OperateData.ReverseByte(_MashBytes[i]);
}
BitArray _MashArray = new BitArray(_MashBytes);
bool _Lith = true;
for (int i = p_NewBitmapData.Height - 1; i != -1; i--)
{
p_MashIndex = (p_Height-1 - i) * (_MashStride * 8);
_WriteIndex = i * p_NewBitmapData.Stride;
for (int z = 0; z != p_NewBitmapData.Width; z++)
{
byte _Index = p_FileBytes[p_ReadIndex];
if (_Lith)
{
_Index = (byte)((_Index & 0xF0) >> 4);
_Lith = false;
}
else
{
_Index = (byte)(_Index & 0x0F); //后面的F
_Lith = true;
p_ReadIndex++;
}
Color _SetColor = (Color)_ColorHashTable[_Index.ToString()];
p_NewData[_WriteIndex + (z * 4)] = (byte)_SetColor.B;
p_NewData[_WriteIndex + (z * 4) + 1] = (byte)_SetColor.G;
p_NewData[_WriteIndex + (z * 4) + 2] = (byte)_SetColor.R;
p_NewData[_WriteIndex + (z * 4) + 3] = 0xFF;
if (_MashArray[p_MashIndex])p_NewData[_WriteIndex + (z * 4) + 3] = 0x00; //
p_MashIndex++;
}
}
}
private void Load1(byte[] p_FileBytes, byte[] p_NewData, int p_ReadIndex, int p_Width, int p_Height, int p_MashIndex, BitmapData p_NewBitmapData)
{
int _WriteIndex = 0;
Hashtable _ColorHashTable = new Hashtable();
for (int i = 0; i != 2; i++)
{
_ColorHashTable.Add(i.ToString(), Color.FromArgb(p_FileBytes[p_ReadIndex + 3], p_FileBytes[p_ReadIndex + 2], p_FileBytes[p_ReadIndex + 1], p_FileBytes[p_ReadIndex]));
p_ReadIndex += 4;
}
p_MashIndex = (p_Width * p_Height /8) + p_ReadIndex;
int _MashStride = p_Width / 8;
if (p_Width % 8 != 0) _MashStride++;
if (_MashStride % 4 != 0) _MashStride += _MashStride % 4;
byte[] _MashBytes = new byte[_MashStride * p_Height];
Array.Copy(p_FileBytes, p_MashIndex, _MashBytes, 0, _MashBytes.Length);
for (int i = 0; i != _MashBytes.Length; i++)
{
_MashBytes[i] = ConvertByte.OperateData.ReverseByte(_MashBytes[i]);
}
BitArray _MashArray = new BitArray(_MashBytes);
int _Lith = 7;
for (int i = p_NewBitmapData.Height - 1; i != -1; i--)
{
p_MashIndex = (p_Height - 1 - i) * (_MashStride * 8);
_WriteIndex = i * p_NewBitmapData.Stride;
for (int z = 0; z != p_NewBitmapData.Width; z++)
{
byte _Index = p_FileBytes[p_ReadIndex];
BitArray _ColorIndex = new BitArray(new byte[] { _Index });
if (_ColorIndex[_Lith])
{
_Index = 1;
}
else
{
_Index = 0;
}
if (_Lith == 0)
{
p_ReadIndex++;
_Lith = 7;
}
else
{
_Lith--;
}
Color _SetColor = (Color)_ColorHashTable[_Index.ToString()];
p_NewData[_WriteIndex + (z * 4)] = (byte)_SetColor.B;
p_NewData[_WriteIndex + (z * 4) + 1] = (byte)_SetColor.G;
p_NewData[_WriteIndex + (z * 4) + 2] = (byte)_SetColor.R;
p_NewData[_WriteIndex + (z * 4) + 3] = 0xFF;
if (_MashArray[p_MashIndex])p_NewData[_WriteIndex + (z * 4) + 3] = 0x00; //
p_MashIndex++;
}
}
}
#endregion
private void LoadImgae(short m_Piex, byte[] p_FileBytes,int _StarIndex)
{
int _Width = m_CurHead.ImageWidth;
int _Height = m_CurHead.ImageHeight;
m_CurImage = new Bitmap(_Width, _Height, PixelFormat.Format32bppArgb);
BitmapData _NewBitmapData = m_CurImage.LockBits(new Rectangle(0, 0, _Width, _Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);
byte[] _NewData = new byte[_NewBitmapData.Stride * _NewBitmapData.Height];
int _ReadIndex = _StarIndex;
int _MashIndex = 0;
switch (m_Piex)
{
case 1:
_MashIndex = (_Width * _Height / 8) + _ReadIndex;
Load1(p_FileBytes, _NewData, _ReadIndex, _Width, _Height, _MashIndex, _NewBitmapData);
break;
case 4:
_MashIndex = (_Width * _Height / 2) + _ReadIndex;
Load4(p_FileBytes, _NewData, _ReadIndex, _Width, _Height, _MashIndex, _NewBitmapData);
break;
case 8:
_MashIndex = _Width * _Height + _ReadIndex;
Load8(p_FileBytes, _NewData, _ReadIndex, _Width, _Height, _MashIndex, _NewBitmapData);
break;
case 24:
_MashIndex = _Width * _Height * 3 + _ReadIndex;
Load24(p_FileBytes, _NewData, _ReadIndex, _Width, _Height, _MashIndex, _NewBitmapData);
break;
case 32:
_MashIndex = _Width * _Height * 4 + _ReadIndex;
Load32(p_FileBytes, _NewData, _ReadIndex, _Width, _Height, _MashIndex, _NewBitmapData);
break;
default:
throw new Exception("不支持的格式");
}
Marshal.Copy(_NewData, 0, _NewBitmapData.Scan0, _NewData.Length);
m_CurImage.UnlockBits(_NewBitmapData);
}
public void SaveImage(string p_FileName)
{
if (m_CurList.Count == 0) return;
FileStream _File = new FileStream(p_FileName, FileMode.Create, FileAccess.Write);
m_CurHead = new CurHead();
_File.Write(new byte[]{0x00,0x00,0x02,0x00},0,4);
_File.Write(BitConverter.GetBytes((ushort)m_CurList.Count),0,2);
List<byte[]> _ImageByteList = new List<byte[]>();
m_CurHead.ImageRVA = (uint)m_CurList.Count * 16+6;
for (int i = 0; i != m_CurList.Count; i++)
{
if (m_CurList[i].Width > 255 || m_CurList[i].Height > 255)
{
_File.Close();
throw new Exception("圖形文件過大!");
}
byte[] _ImageSize = GetImageBytes(i);
m_CurHead.ImageHeight = (byte)CurImage[i].Height;
m_CurHead.ImageWidth = (byte)CurImage[i].Width;
m_CurHead.ImageRVA += m_CurHead.ImageLength;
m_CurHead.ImageLength = (uint)_ImageSize.Length;
_ImageByteList.Add(_ImageSize);
_File.Write(m_CurHead.GetImageByte(), 0, 16);
}
for (int i = 0; i != _ImageByteList.Count; i++)
{
byte[] _Height = BitConverter.GetBytes((uint)(m_CurList[i].Height * 2));
_ImageByteList[i][8] = _Height[0];
_ImageByteList[i][9] = _Height[1];
_ImageByteList[i][10] = _Height[2];
_ImageByteList[i][11] = _Height[3];
_File.Write(_ImageByteList[i], 0, _ImageByteList[i].Length);
}
_File.Close();
}
public MemoryStream SaveImage()
{
if (m_CurList.Count == 0) throw new Exception("無圖形可保存");
MemoryStream _Memory = new MemoryStream();
m_CurHead = new CurHead();
_Memory.Write(new byte[] { 0x00, 0x00, 0x02, 0x00 }, 0, 4);
_Memory.Write(BitConverter.GetBytes((ushort)m_CurList.Count), 0, 2);
List<byte[]> _ImageByteList = new List<byte[]>();
m_CurHead.ImageRVA = (uint)m_CurList.Count * 16 + 6;
for (int i = 0; i != m_CurList.Count; i++)
{
if (m_CurList[i].Width > 255 || m_CurList[i].Height > 255)
{
_Memory.Close();
throw new Exception("圖形文件過大!");
}
byte[] _ImageSize = GetImageBytes(i);
m_CurHead.ImageHeight = (byte)CurImage[i].Height;
m_CurHead.ImageWidth = (byte)CurImage[i].Width;
m_CurHead.ImageRVA += m_CurHead.ImageLength;
m_CurHead.ImageLength = (uint)_ImageSize.Length;
_ImageByteList.Add(_ImageSize);
_Memory.Write(m_CurHead.GetImageByte(), 0, 16);
}
for (int i = 0; i != _ImageByteList.Count; i++)
{
byte[] _Height = BitConverter.GetBytes((uint)(m_CurList[i].Height * 2));
_ImageByteList[i][8] = _Height[0];
_ImageByteList[i][9] = _Height[1];
_ImageByteList[i][10] = _Height[2];
_ImageByteList[i][11] = _Height[3];
_Memory.Write(_ImageByteList[i], 0, _ImageByteList[i].Length);
}
return _Memory;
}
/// <summary>
/// CUR圖形
/// </summary>
public IList<Image> CurImage { get { return m_CurList; } set { m_CurList = value; } }
public byte[] GetImageBytes(int p_ImageIndex)
{
MemoryStream _Memory = new MemoryStream();
if (m_CurList[p_ImageIndex].PixelFormat != PixelFormat.Format32bppArgb)
{
Bitmap _Image = new Bitmap(m_CurList[p_ImageIndex].Width, m_CurList[p_ImageIndex].Height, PixelFormat.Format32bppArgb);
Graphics _Graphcis = Graphics.FromImage(_Image);
_Graphcis.Dispose();
_Image.Save(_Memory, ImageFormat.Bmp);
}
else
{
m_CurList[p_ImageIndex].Save(_Memory, ImageFormat.Bmp);
}
byte[] _Test = _Memory.ToArray();
byte[] _ImageBytes = new byte[_Memory.Length - 0x0E];
_Memory.Position = 0x0E;
_Memory.Read(_ImageBytes, 0, _ImageBytes.Length);
return _ImageBytes;
}
}
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
高清视频欧美一级| 国产精品视频网站| 国产精品黄色av| 成人黄在线观看| 91精品久久久久| 欧美日韩精品在线观看| 视频一区视频二区国产精品| 日韩国产高清视频在线| 国产日韩欧美视频| 大伊人狠狠躁夜夜躁av一区| 丝袜美腿亚洲一区二区| 久久6免费高清热精品| 亚洲精品国产精品国自产观看浪潮| 亚洲人成电影在线| 精品电影在线观看| 久久久中文字幕| 日韩中文字幕免费视频| 久久久久国产一区二区三区| 精品日本高清在线播放| 中文字幕自拍vr一区二区三区| 欧美高清视频免费观看| 国产区亚洲区欧美区| 久久成人精品一区二区三区| 91精品国产沙发| 九色精品美女在线| 亚洲男女自偷自拍图片另类| 国产97色在线|日韩| 美女撒尿一区二区三区| 成人a在线观看| 精品国产欧美成人夜夜嗨| 国产一区二区在线播放| 日韩精品一区二区三区第95| 日韩高清av一区二区三区| 97国产suv精品一区二区62| 国产成+人+综合+亚洲欧美丁香花| 一区二区三区国产视频| 国产精品羞羞答答| 97欧美精品一区二区三区| 欧美在线视频观看免费网站| 久久成人av网站| 欧美日韩在线观看视频小说| 国产成人精品视频在线| 美女撒尿一区二区三区| 亚洲自拍偷拍视频| 美日韩丰满少妇在线观看| 亚洲精品xxx| 亚洲国产福利在线| 欧美日韩一区二区在线| 精品五月天久久| 欧美男插女视频| 国产亚洲精品成人av久久ww| 中文字幕亚洲在线| 深夜福利日韩在线看| 欧美成年人视频网站欧美| www.久久撸.com| 欧洲成人午夜免费大片| 日本一区二区三区在线播放| 美女999久久久精品视频| 欧美亚洲视频在线观看| 久久影视电视剧凤归四时歌| 国产精品久久久久福利| 懂色av中文一区二区三区天美| 精品国产精品自拍| 亚洲性视频网址| 成人网址在线观看| 国产成人+综合亚洲+天堂| 性夜试看影院91社区| 国产不卡一区二区在线播放| 亚洲美女又黄又爽在线观看| 国产精品视频色| 日韩中文字幕不卡视频| 欧美精品18videos性欧美| 国产中文字幕亚洲| 国产伦精品一区二区三区精品视频| 国产精品美女999| 国产丝袜一区二区| 亚洲成人久久网| 97在线观看免费高清| 亚洲国产精品一区二区久| 欧美影院在线播放| 精品亚洲一区二区| 亚洲男人av电影| 欧美激情在线观看视频| 日产日韩在线亚洲欧美| 日韩av色在线| 欧美一区二粉嫩精品国产一线天| 色综合久久天天综线观看| 一级做a爰片久久毛片美女图片| 久久精品电影网| 欧美巨大黑人极品精男| 国产成人精品一区二区在线| 18久久久久久| 欧美黑人性视频| 国模吧一区二区| 精品国内亚洲在观看18黄| 亚洲成人免费网站| 国产精品久久久久久久久男| 日本欧美一级片| 亚洲视频axxx| 亚洲女人天堂视频| 亚洲最新中文字幕| 亚洲精品国产精品国自产在线| 91av在线看| 日韩激情第一页| 久久成人精品一区二区三区| 九九热这里只有精品6| 92国产精品视频| 97在线视频免费播放| 欧美床上激情在线观看| 欧美激情免费在线| 日韩国产在线看| 97不卡在线视频| 国产成+人+综合+亚洲欧美丁香花| www.国产一区| 91久久中文字幕| 亚洲第一男人天堂| 中文字幕日韩欧美精品在线观看| 国产丝袜一区二区| 欧美巨猛xxxx猛交黑人97人| 亚洲毛片在线免费观看| 在线观看日韩www视频免费| 日韩有码在线播放| 欧美综合国产精品久久丁香| 国内精品中文字幕| 国产欧美精品在线播放| 成人免费淫片视频软件| 亚洲香蕉在线观看| 国产一区玩具在线观看| 国产99久久精品一区二区 夜夜躁日日躁| 亚洲日本aⅴ片在线观看香蕉| 国产精品丝袜久久久久久不卡| 欧美亚洲视频一区二区| 亚洲一区二区三区乱码aⅴ蜜桃女| 国产91精品久久久久久| 在线观看视频亚洲| 美乳少妇欧美精品| 疯狂做受xxxx欧美肥白少妇| 欧美黑人xxxx| 亲爱的老师9免费观看全集电视剧| 国产精品视频一| 亚洲欧美国产日韩天堂区| 91视频-88av| 国产精品 欧美在线| 国产成人福利夜色影视| 国产精品九九九| 欧美一级淫片丝袜脚交| 亚洲图片欧美日产| 久久久精品中文字幕| 亚洲夜晚福利在线观看| 成人a在线观看| 欧美成人激情图片网| 国产视频综合在线| 精品国产91乱高清在线观看| 日本在线精品视频| 成人av在线亚洲| 欧美色图在线视频| 日韩美女av在线免费观看| 一本大道亚洲视频| 国产一区玩具在线观看| 亚洲精品国偷自产在线99热| 亚洲国产精品久久久久秋霞不卡| 久久精品中文字幕一区| 成人h片在线播放免费网站| 久久精品国产91精品亚洲|