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

首頁 > 編程 > C# > 正文

c#圖片縮放圖片剪切功能實現(等比縮放)

2020-01-24 02:57:52
字體:
來源:轉載
供稿:網友

所謂c#圖片處理高級應,多數是基于.net framework類庫完成

復制代碼 代碼如下:

using system;
using system.collections.generic;
using system.text;
using system.io;
using system.drawing;
using system.drawing.drawing2d;
using system.drawing.imaging;

namespace wujian.common
{
    /// <summary>
    /// 圖片處理類
    /// </summary>
    public class ptimage
    {
        #region 正方型裁剪并縮放
        /// <summary>
        /// 正方型裁剪
        /// 以圖片中心為軸心,截取正方型,然后等比縮放
        /// 用于頭像處理
        /// </summary>
        /// <param name="postedfile">原圖httppostedfile對象</param>
        /// <param name="filesaveurl">縮略圖存放地址</param>
        /// <param name="side">指定的邊長(正方型)</param>
        /// <param name="quality">質量(范圍0-100)</param>
        public static void cutforsquare(system.web.httppostedfile postedfile, string filesaveurl, int side, int quality)
        {
            //創建目錄
            string dir = path.getdirectoryname(filesaveurl);
            if (!directory.exists(dir))
                directory.createdirectory(dir);

            //原始圖片(獲取原始圖片創建對象,并使用流中嵌入的顏色管理信息)
            system.drawing.image initimage = system.drawing.image.fromstream(postedfile.inputstream, true);

            //原圖寬高均小于模版,不作處理,直接保存
            if (initimage.width <= side && initimage.height <= side)
            {
                initimage.save(filesaveurl, system.drawing.imaging.imageformat.jpeg);
            }
            else
            {
                //原始圖片的寬、高
                int initwidth = initimage.width;
                int initheight = initimage.height;

                //非正方型先裁剪為正方型
                if (initwidth != initheight)
                {
                    //截圖對象
                    system.drawing.image pickedimage = null;
                    system.drawing.graphics pickedg = null;

                    //寬大于高的橫圖
                    if (initwidth > initheight)
                    {
                        //對象實例化
                        pickedimage = new system.drawing.bitmap(initheight, initheight);
                        pickedg = system.drawing.graphics.fromimage(pickedimage);
                        //設置質量
                        pickedg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                        pickedg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                        //定位
                        rectangle fromr = new rectangle((initwidth - initheight) / 2, 0, initheight, initheight);
                        rectangle tor = new rectangle(0, 0, initheight, initheight);
                        //畫圖
                        pickedg.drawimage(initimage, tor, fromr, system.drawing.graphicsunit.pixel);
                        //重置寬
                        initwidth = initheight;
                    }
                    //高大于寬的豎圖
                    else
                    {
                        //對象實例化
                        pickedimage = new system.drawing.bitmap(initwidth, initwidth);
                        pickedg = system.drawing.graphics.fromimage(pickedimage);
                        //設置質量
                        pickedg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                        pickedg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                        //定位
                        rectangle fromr = new rectangle(0, (initheight - initwidth) / 2, initwidth, initwidth);
                        rectangle tor = new rectangle(0, 0, initwidth, initwidth);
                        //畫圖
                        pickedg.drawimage(initimage, tor, fromr, system.drawing.graphicsunit.pixel);
                        //重置高
                        initheight = initwidth;
                    }

                    //將截圖對象賦給原圖
                    initimage = (system.drawing.image)pickedimage.clone();
                    //釋放截圖資源
                    pickedg.dispose();
                    pickedimage.dispose();
                }

                //縮略圖對象
                system.drawing.image resultimage = new system.drawing.bitmap(side, side);
                system.drawing.graphics resultg = system.drawing.graphics.fromimage(resultimage);
                //設置質量
                resultg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                resultg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                //用指定背景色清空畫布
                resultg.clear(color.white);
                //繪制縮略圖
                resultg.drawimage(initimage, new system.drawing.rectangle(0, 0, side, side), new system.drawing.rectangle(0, 0, initwidth, initheight), system.drawing.graphicsunit.pixel);

                //關鍵質量控制
                //獲取系統編碼類型數組,包含了jpeg,bmp,png,gif,tiff
                imagecodecinfo[] icis = imagecodecinfo.getimageencoders();
                imagecodecinfo ici = null;
                foreach (imagecodecinfo i in icis)
                {
                    if (i.mimetype == "image/jpeg" || i.mimetype == "image/bmp" || i.mimetype == "image/png" || i.mimetype == "image/gif")
                    {
                        ici = i;
                    }
                }
                encoderparameters ep = new encoderparameters(1);
                ep.param[0] = new encoderparameter(system.drawing.imaging.encoder.quality, (long)quality);

                //保存縮略圖
                resultimage.save(filesaveurl, ici, ep);

                //釋放關鍵質量控制所用資源
                ep.dispose();

                //釋放縮略圖資源
                resultg.dispose();
                resultimage.dispose();

                //釋放原始圖片資源
                initimage.dispose();
            }
        }

        /// <summary>
        /// 正方型裁剪
        /// 以圖片中心為軸心,截取正方型,然后等比縮放
        /// 用于頭像處理
        /// </summary>
        /// <param name="postedfile">原圖httppostedfile對象</param>
        /// <param name="filesaveurl">縮略圖存放地址</param>
        /// <param name="side">指定的邊長(正方型)</param>
        /// <param name="quality">質量(范圍0-100)</param>
        public static void cutforsquare(system.io.stream fromfile, string filesaveurl, int side, int quality)
        {
            //創建目錄
            string dir = path.getdirectoryname(filesaveurl);
            if (!directory.exists(dir))
                directory.createdirectory(dir);

            //原始圖片(獲取原始圖片創建對象,并使用流中嵌入的顏色管理信息)
            system.drawing.image initimage = system.drawing.image.fromstream(fromfile, true);

            //原圖寬高均小于模版,不作處理,直接保存
            if (initimage.width <= side && initimage.height <= side)
            {
                initimage.save(filesaveurl, system.drawing.imaging.imageformat.jpeg);
            }
            else
            {
                //原始圖片的寬、高
                int initwidth = initimage.width;
                int initheight = initimage.height;

                //非正方型先裁剪為正方型
                if (initwidth != initheight)
                {
                    //截圖對象
                    system.drawing.image pickedimage = null;
                    system.drawing.graphics pickedg = null;

                    //寬大于高的橫圖
                    if (initwidth > initheight)
                    {
                        //對象實例化
                        pickedimage = new system.drawing.bitmap(initheight, initheight);
                        pickedg = system.drawing.graphics.fromimage(pickedimage);
                        //設置質量
                        pickedg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                        pickedg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                        //定位
                        rectangle fromr = new rectangle((initwidth - initheight) / 2, 0, initheight, initheight);
                        rectangle tor = new rectangle(0, 0, initheight, initheight);
                        //畫圖
                        pickedg.drawimage(initimage, tor, fromr, system.drawing.graphicsunit.pixel);
                        //重置寬
                        initwidth = initheight;
                    }
                    //高大于寬的豎圖
                    else
                    {
                        //對象實例化
                        pickedimage = new system.drawing.bitmap(initwidth, initwidth);
                        pickedg = system.drawing.graphics.fromimage(pickedimage);
                        //設置質量
                        pickedg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                        pickedg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                        //定位
                        rectangle fromr = new rectangle(0, (initheight - initwidth) / 2, initwidth, initwidth);
                        rectangle tor = new rectangle(0, 0, initwidth, initwidth);
                        //畫圖
                        pickedg.drawimage(initimage, tor, fromr, system.drawing.graphicsunit.pixel);
                        //重置高
                        initheight = initwidth;
                    }

                    //將截圖對象賦給原圖
                    initimage = (system.drawing.image)pickedimage.clone();
                    //釋放截圖資源
                    pickedg.dispose();
                    pickedimage.dispose();
                }

                //縮略圖對象
                system.drawing.image resultimage = new system.drawing.bitmap(side, side);
                system.drawing.graphics resultg = system.drawing.graphics.fromimage(resultimage);
                //設置質量
                resultg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                resultg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                //用指定背景色清空畫布
                resultg.clear(color.white);
                //繪制縮略圖
                resultg.drawimage(initimage, new system.drawing.rectangle(0, 0, side, side), new system.drawing.rectangle(0, 0, initwidth, initheight), system.drawing.graphicsunit.pixel);

                //關鍵質量控制
                //獲取系統編碼類型數組,包含了jpeg,bmp,png,gif,tiff
                imagecodecinfo[] icis = imagecodecinfo.getimageencoders();
                imagecodecinfo ici = null;
                foreach (imagecodecinfo i in icis)
                {
                    if (i.mimetype == "image/jpeg" || i.mimetype == "image/bmp" || i.mimetype == "image/png" || i.mimetype == "image/gif")
                    {
                        ici = i;
                    }
                }
                encoderparameters ep = new encoderparameters(1);
                ep.param[0] = new encoderparameter(system.drawing.imaging.encoder.quality, (long)quality);

                //保存縮略圖
                resultimage.save(filesaveurl, ici, ep);

                //釋放關鍵質量控制所用資源
                ep.dispose();

                //釋放縮略圖資源
                resultg.dispose();
                resultimage.dispose();

                //釋放原始圖片資源
                initimage.dispose();
            }
        }
        #endregion

        #region 固定模版裁剪并縮放
        /// <summary>
        /// 指定長寬裁剪
        /// 按模版比例最大范圍的裁剪圖片并縮放至模版尺寸
        /// </summary>
        /// <param name="postedfile">原圖httppostedfile對象</param>
        /// <param name="filesaveurl">保存路徑</param>
        /// <param name="maxwidth">最大寬(單位:px)</param>
        /// <param name="maxheight">最大高(單位:px)</param>
        /// <param name="quality">質量(范圍0-100)</param>
        public static void cutforcustom(system.web.httppostedfile postedfile, string filesaveurl, int maxwidth, int maxheight, int quality)
        {
            //從文件獲取原始圖片,并使用流中嵌入的顏色管理信息
            system.drawing.image initimage = system.drawing.image.fromstream(postedfile.inputstream, true);

            //原圖寬高均小于模版,不作處理,直接保存
            if (initimage.width <= maxwidth && initimage.height <= maxheight)
            {
                initimage.save(filesaveurl, system.drawing.imaging.imageformat.jpeg);
            }
            else
            {
                //模版的寬高比例
                double templaterate = (double)maxwidth / maxheight;
                //原圖片的寬高比例
                double initrate = (double)initimage.width / initimage.height;

                //原圖與模版比例相等,直接縮放
                if (templaterate == initrate)
                {
                    //按模版大小生成最終圖片
                    system.drawing.image templateimage = new system.drawing.bitmap(maxwidth, maxheight);
                    system.drawing.graphics templateg = system.drawing.graphics.fromimage(templateimage);
                    templateg.interpolationmode = system.drawing.drawing2d.interpolationmode.high;
                    templateg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                    templateg.clear(color.white);
                    templateg.drawimage(initimage, new system.drawing.rectangle(0, 0, maxwidth, maxheight), new system.drawing.rectangle(0, 0, initimage.width, initimage.height), system.drawing.graphicsunit.pixel);
                    templateimage.save(filesaveurl, system.drawing.imaging.imageformat.jpeg);
                }
                //原圖與模版比例不等,裁剪后縮放
                else
                {
                    //裁剪對象
                    system.drawing.image pickedimage = null;
                    system.drawing.graphics pickedg = null;

                    //定位
                    rectangle fromr = new rectangle(0, 0, 0, 0);//原圖裁剪定位
                    rectangle tor = new rectangle(0, 0, 0, 0);//目標定位

                    //寬為標準進行裁剪
                    if (templaterate > initrate)
                    {
                        //裁剪對象實例化
                        pickedimage = new system.drawing.bitmap(initimage.width, (int)math.floor(initimage.width / templaterate));
                        pickedg = system.drawing.graphics.fromimage(pickedimage);

                        //裁剪源定位
                        fromr.x = 0;
                        fromr.y = (int)math.floor((initimage.height - initimage.width / templaterate) / 2);
                        fromr.width = initimage.width;
                        fromr.height = (int)math.floor(initimage.width / templaterate);

                        //裁剪目標定位
                        tor.x = 0;
                        tor.y = 0;
                        tor.width = initimage.width;
                        tor.height = (int)math.floor(initimage.width / templaterate);
                    }
                    //高為標準進行裁剪
                    else
                    {
                        pickedimage = new system.drawing.bitmap((int)math.floor(initimage.height * templaterate), initimage.height);
                        pickedg = system.drawing.graphics.fromimage(pickedimage);

                        fromr.x = (int)math.floor((initimage.width - initimage.height * templaterate) / 2);
                        fromr.y = 0;
                        fromr.width = (int)math.floor(initimage.height * templaterate);
                        fromr.height = initimage.height;

                        tor.x = 0;
                        tor.y = 0;
                        tor.width = (int)math.floor(initimage.height * templaterate);
                        tor.height = initimage.height;
                    }

                    //設置質量
                    pickedg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                    pickedg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;

                    //裁剪
                    pickedg.drawimage(initimage, tor, fromr, system.drawing.graphicsunit.pixel);

                    //按模版大小生成最終圖片
                    system.drawing.image templateimage = new system.drawing.bitmap(maxwidth, maxheight);
                    system.drawing.graphics templateg = system.drawing.graphics.fromimage(templateimage);
                    templateg.interpolationmode = system.drawing.drawing2d.interpolationmode.high;
                    templateg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;
                    templateg.clear(color.white);
                    templateg.drawimage(pickedimage, new system.drawing.rectangle(0, 0, maxwidth, maxheight), new system.drawing.rectangle(0, 0, pickedimage.width, pickedimage.height), system.drawing.graphicsunit.pixel);

                    //關鍵質量控制
                    //獲取系統編碼類型數組,包含了jpeg,bmp,png,gif,tiff
                    imagecodecinfo[] icis = imagecodecinfo.getimageencoders();
                    imagecodecinfo ici = null;
                    foreach (imagecodecinfo i in icis)
                    {
                        if (i.mimetype == "image/jpeg" || i.mimetype == "image/bmp" || i.mimetype == "image/png" || i.mimetype == "image/gif")
                        {
                            ici = i;
                        }
                    }
                    encoderparameters ep = new encoderparameters(1);
                    ep.param[0] = new encoderparameter(system.drawing.imaging.encoder.quality, (long)quality);

                    //保存縮略圖
                    templateimage.save(filesaveurl, ici, ep);
                    //templateimage.save(filesaveurl, system.drawing.imaging.imageformat.jpeg);

                    //釋放資源
                    templateg.dispose();
                    templateimage.dispose();

                    pickedg.dispose();
                    pickedimage.dispose();
                }
            }

            //釋放資源
            initimage.dispose();
        }
        #endregion

        #region 等比縮放
        /// <summary>
        /// 圖片等比縮放
        /// </summary>
        /// <param name="postedfile">原圖httppostedfile對象</param>
        /// <param name="savepath">縮略圖存放地址</param>
        /// <param name="targetwidth">指定的最大寬度</param>
        /// <param name="targetheight">指定的最大高度</param>
        /// <param name="watermarktext">水印文字(為""表示不使用水印)</param>
        /// <param name="watermarkimage">水印圖片路徑(為""表示不使用水印)</param>
        public static void zoomauto(system.web.httppostedfile postedfile, string savepath, system.double targetwidth, system.double targetheight, string watermarktext, string watermarkimage)
        {
            //創建目錄
            string dir = path.getdirectoryname(savepath);
            if (!directory.exists(dir))
                directory.createdirectory(dir);

            //原始圖片(獲取原始圖片創建對象,并使用流中嵌入的顏色管理信息)
            system.drawing.image initimage = system.drawing.image.fromstream(postedfile.inputstream, true);

            //原圖寬高均小于模版,不作處理,直接保存
            if (initimage.width <= targetwidth && initimage.height <= targetheight)
            {
                //文字水印
                if (watermarktext != "")
                {
                    using (system.drawing.graphics gwater = system.drawing.graphics.fromimage(initimage))
                    {
                        system.drawing.font fontwater = new font("黑體", 10);
                        system.drawing.brush brushwater = new solidbrush(color.white);
                        gwater.drawstring(watermarktext, fontwater, brushwater, 10, 10);
                        gwater.dispose();
                    }
                }

                //透明圖片水印
                if (watermarkimage != "")
                {
                    if (file.exists(watermarkimage))
                    {
                        //獲取水印圖片
                        using (system.drawing.image wrimage = system.drawing.image.fromfile(watermarkimage))
                        {
                            //水印繪制條件:原始圖片寬高均大于或等于水印圖片
                            if (initimage.width >= wrimage.width && initimage.height >= wrimage.height)
                            {
                                graphics gwater = graphics.fromimage(initimage);

                                //透明屬性
                                imageattributes imgattributes = new imageattributes();
                                colormap colormap = new colormap();
                                colormap.oldcolor = color.fromargb(255, 0, 255, 0);
                                colormap.newcolor = color.fromargb(0, 0, 0, 0);
                                colormap[] remaptable = { colormap };
                                imgattributes.setremaptable(remaptable, coloradjusttype.bitmap);

                                float[][] colormatrixelements = {
                                   new float[] {1.0f,  0.0f,  0.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  1.0f,  0.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  0.0f,  1.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  0.0f,  0.0f,  0.5f, 0.0f},//透明度:0.5
                                   new float[] {0.0f,  0.0f,  0.0f,  0.0f, 1.0f}
                                };

                                colormatrix wmcolormatrix = new colormatrix(colormatrixelements);
                                imgattributes.setcolormatrix(wmcolormatrix, colormatrixflag.default, coloradjusttype.bitmap);
                                gwater.drawimage(wrimage, new rectangle(initimage.width - wrimage.width, initimage.height - wrimage.height, wrimage.width, wrimage.height), 0, 0, wrimage.width, wrimage.height, graphicsunit.pixel, imgattributes);

                                gwater.dispose();
                            }
                            wrimage.dispose();
                        }
                    }
                }

                //保存
                initimage.save(savepath, system.drawing.imaging.imageformat.jpeg);
            }
            else
            {
                //縮略圖寬、高計算
                double newwidth = initimage.width;
                double newheight = initimage.height;

                //寬大于高或寬等于高(橫圖或正方)
                if (initimage.width > initimage.height || initimage.width == initimage.height)
                {
                    //如果寬大于模版
                    if (initimage.width > targetwidth)
                    {
                        //寬按模版,高按比例縮放
                        newwidth = targetwidth;
                        newheight = initimage.height * (targetwidth / initimage.width);
                    }
                }
                //高大于寬(豎圖)
                else
                {
                    //如果高大于模版
                    if (initimage.height > targetheight)
                    {
                        //高按模版,寬按比例縮放
                        newheight = targetheight;
                        newwidth = initimage.width * (targetheight / initimage.height);
                    }
                }

                //生成新圖
                //新建一個bmp圖片
                system.drawing.image newimage = new system.drawing.bitmap((int)newwidth, (int)newheight);
                //新建一個畫板
                system.drawing.graphics newg = system.drawing.graphics.fromimage(newimage);

                //設置質量
                newg.interpolationmode = system.drawing.drawing2d.interpolationmode.highqualitybicubic;
                newg.smoothingmode = system.drawing.drawing2d.smoothingmode.highquality;

                //置背景色
                newg.clear(color.white);
                //畫圖
                newg.drawimage(initimage, new system.drawing.rectangle(0, 0, newimage.width, newimage.height), new system.drawing.rectangle(0, 0, initimage.width, initimage.height), system.drawing.graphicsunit.pixel);

                //文字水印
                if (watermarktext != "")
                {
                    using (system.drawing.graphics gwater = system.drawing.graphics.fromimage(newimage))
                    {
                        system.drawing.font fontwater = new font("宋體", 10);
                        system.drawing.brush brushwater = new solidbrush(color.white);
                        gwater.drawstring(watermarktext, fontwater, brushwater, 10, 10);
                        gwater.dispose();
                    }
                }

                //透明圖片水印
                if (watermarkimage != "")
                {
                    if (file.exists(watermarkimage))
                    {
                        //獲取水印圖片
                        using (system.drawing.image wrimage = system.drawing.image.fromfile(watermarkimage))
                        {
                            //水印繪制條件:原始圖片寬高均大于或等于水印圖片
                            if (newimage.width >= wrimage.width && newimage.height >= wrimage.height)
                            {
                                graphics gwater = graphics.fromimage(newimage);

                                //透明屬性
                                imageattributes imgattributes = new imageattributes();
                                colormap colormap = new colormap();
                                colormap.oldcolor = color.fromargb(255, 0, 255, 0);
                                colormap.newcolor = color.fromargb(0, 0, 0, 0);
                                colormap[] remaptable = { colormap };
                                imgattributes.setremaptable(remaptable, coloradjusttype.bitmap);

                                float[][] colormatrixelements = {
                                   new float[] {1.0f,  0.0f,  0.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  1.0f,  0.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  0.0f,  1.0f,  0.0f, 0.0f},
                                   new float[] {0.0f,  0.0f,  0.0f,  0.5f, 0.0f},//透明度:0.5
                                   new float[] {0.0f,  0.0f,  0.0f,  0.0f, 1.0f}
                                };

                                colormatrix wmcolormatrix = new colormatrix(colormatrixelements);
                                imgattributes.setcolormatrix(wmcolormatrix, colormatrixflag.default, coloradjusttype.bitmap);
                                gwater.drawimage(wrimage, new rectangle(newimage.width - wrimage.width, newimage.height - wrimage.height, wrimage.width, wrimage.height), 0, 0, wrimage.width, wrimage.height, graphicsunit.pixel, imgattributes);
                                gwater.dispose();
                            }
                            wrimage.dispose();
                        }
                    }
                }

                //保存縮略圖
                newimage.save(savepath, system.drawing.imaging.imageformat.jpeg);

                //釋放資源
                newg.dispose();
                newimage.dispose();
                initimage.dispose();
            }
        }

        #endregion      

        #region 其它
        /// <summary>
        /// 判斷文件類型是否為web格式圖片
        /// (注:jpg,gif,bmp,png)
        /// </summary>
        /// <param name="contenttype">httppostedfile.contenttype</param>
        /// <returns></returns>
        public static bool iswebimage(string contenttype)
        {
            if (contenttype == "image/pjpeg" || contenttype == "image/jpeg" || contenttype == "image/gif" || contenttype == "image/bmp" || contenttype == "image/png")
            {
                return true;
            }
            else
            {
                return false;
            }
        }

        #endregion
    }//end class
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产一区二区三区在线观看网站| 欧美激情网友自拍| 成人免费看黄网站| 国产精品扒开腿做爽爽爽男男| 91九色精品视频| 91av在线网站| 亚洲欧美一区二区精品久久久| 日韩毛片在线观看| 91九色视频在线| 麻豆国产精品va在线观看不卡| 国产精品丝袜久久久久久高清| 亚洲аv电影天堂网| 欧美成人剧情片在线观看| 中文字幕日韩精品在线| 2019中文字幕在线免费观看| 亚洲bt天天射| 亚洲自拍偷拍福利| 北条麻妃在线一区二区| 欧美视频不卡中文| 精品国产91久久久久久| 欧美日韩亚洲视频一区| 国产精品视频白浆免费视频| 国产91精品黑色丝袜高跟鞋| 中文字幕精品视频| 亚洲福利视频免费观看| 亚洲欧美一区二区精品久久久| 国产精品高潮视频| 亚洲网站在线观看| 亚洲一区二区三区sesese| 日韩欧美大尺度| 欧美又大又硬又粗bbbbb| 成人久久一区二区三区| 欧美电影在线观看完整版| 亚洲视频在线观看| 中文字幕国产精品久久| 欧美精品在线免费播放| 97久久超碰福利国产精品…| 国产精品三级在线| 亚洲一区中文字幕| 欧美xxxx18性欧美| 久久精品2019中文字幕| 国产99久久精品一区二区| 日韩av在线播放资源| 庆余年2免费日韩剧观看大牛| 欧美一区深夜视频| 欧美日韩国产第一页| 国产69久久精品成人看| 国产suv精品一区二区三区88区| 欧美在线视频观看免费网站| 国产91网红主播在线观看| 亚洲国产精品福利| 久久精品视频在线| 国产成人精品久久二区二区| 成人免费网站在线| 欧美极品美女视频网站在线观看免费| 日韩精品有码在线观看| 欧美与黑人午夜性猛交久久久| 中文字幕在线成人| 欧美日韩裸体免费视频| 国产精品视频99| 亚洲第一区第二区| 成人欧美一区二区三区在线| 久久香蕉国产线看观看网| 国产精品夜间视频香蕉| 亚洲第一视频在线观看| 久久精品国产成人精品| 日韩在线精品视频| 国产精品一区二区三区久久久| 奇米4444一区二区三区| 日韩一区二区久久久| 欧美刺激性大交免费视频| 国产一区二区三区在线观看网站| 深夜精品寂寞黄网站在线观看| 国产亚洲精品美女久久久| 九色成人免费视频| 亚洲黄色有码视频| 97av在线播放| 91久久久久久| 国产精品久久77777| 亚洲第一区中文字幕| 亚洲欧美日韩精品久久亚洲区| www欧美日韩| 成人福利免费观看| 国产精品视频久| 国产91九色视频| 亚洲图片欧美日产| 欧美超级免费视 在线| 国产成人精品综合久久久| 国产午夜精品视频免费不卡69堂| 国产又爽又黄的激情精品视频| 亚洲va欧美va国产综合久久| 91中文字幕一区| 国产美女扒开尿口久久久| 黑人巨大精品欧美一区二区免费| 91在线观看免费| 在线视频中文亚洲| 日韩在线观看网站| 久久精品视频在线| 国产精品r级在线| 一本一本久久a久久精品综合小说| 亚洲欧美国产视频| 欧美日在线观看| 色悠久久久久综合先锋影音下载| 欧美日韩美女视频| 亚洲人成免费电影| 日韩av中文字幕在线| 成人免费淫片aa视频免费| 久久亚洲国产精品| 亚洲尤物视频网| 欧美成人精品h版在线观看| 亚洲精品一区中文字幕乱码| 伊人av综合网| 国产成人在线视频| 久久久999精品| 欧美日韩亚洲精品内裤| 国产亚洲激情在线| 国产主播精品在线| 日韩有码片在线观看| 97视频免费看| 91香蕉嫩草神马影院在线观看| 日韩av在线导航| 91高潮精品免费porn| 欧美午夜性色大片在线观看| 亚洲欧美国产精品专区久久| 中文字幕成人在线| 91成人国产在线观看| 亚洲www永久成人夜色| 国产精品草莓在线免费观看| 成人免费看片视频| 这里只有视频精品| 亚洲国产高清福利视频| 成人高h视频在线| 日韩欧美在线视频| 欧美成人一二三| 亚洲人成伊人成综合网久久久| 欧美最顶级的aⅴ艳星| 欧美性猛xxx| 亚洲精品日韩激情在线电影| 欧美在线日韩在线| 国产在线观看精品一区二区三区| 日韩在线不卡视频| 8x海外华人永久免费日韩内陆视频| 69影院欧美专区视频| 国产精品电影在线观看| 成人性教育视频在线观看| 日韩a**中文字幕| 成人午夜黄色影院| 久久久久久久久91| 奇米成人av国产一区二区三区| 国产一区私人高清影院| 日韩亚洲第一页| 一区二区欧美激情| www国产亚洲精品久久网站| 色偷偷88888欧美精品久久久| 欧美在线视频观看免费网站| 精品丝袜一区二区三区| 亚洲成av人片在线观看香蕉| 久久久久国色av免费观看性色| 欧美激情亚洲自拍| 色综合老司机第九色激情| 不卡中文字幕av| 亚洲欧美激情在线视频| 亚洲视频欧美视频| 国产精品成人av在线|