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

首頁 > 編程 > PHP > 正文

php生成pdf文件,html轉pdf文件的最佳方法(轉載)

2019-11-06 08:06:48
字體:
來源:轉載
供稿:網友

之前有個客戶需要把一些html頁面生成pdf文件,然后我就找一些用php把html頁面圍成pdf文件的類。方法是可謂是找了很多很多,什么html2pdf,pdflib,FPDF這些都試過了,但是都沒有達到我要的求。

pdflib,FPDF這兩個方法是需要編寫程序去生成pdf的,就也是講不支持直接把html頁面轉換成pdf;html2pdf這個雖然可以把html頁面轉換成pdf文件,但是它只能轉換一般簡單的html代碼,如果你的html內容要的是通過后臺新聞編輯器排版的那肯定不行的。

糾結了半天,什么百度,谷歌搜索都用了,搜索了半天,功夫不負有心人,終于找到一個非常好用的方法了,下面就隆重介紹。

它就是:wkhtmltopdf,wkhtmltopdf可以直接把任何一個可以在瀏覽器中瀏覽的網頁直接轉換成一個pdf,首先說明一下它不是一個PHP類,而是一個把html頁面轉換成pdf的一個軟件,但是它并不是一個簡單的桌面軟件,而且它直接cmd批處理的。而且php有個shell_exec()函數。下面就一步一步介紹如何用php來讓它生成pdf文件的方法。

一,下載并安裝pdf下載地址:http://code.google.com/p/wkhtmltopdf/downloads/list上面有各種平臺下安裝的安裝包,英文不好的直接谷歌翻譯一下。下面以 windows平臺上使用舉例,我的下載的是wkhtmltopdf-0.9.9-installer.exe這個版本,我在Win7 32位64位和windows 2003上安裝測試都沒有問題的。下載好以后直接安裝就可以了,注意安裝路徑要知道,下面會用到的。安裝好以后需要在系統環境變量變量名為”Path”的后添加:;C:PRogram Files (x86)wkhtmltopdf 也就是你安裝的目錄。安裝好以后重啟電腦。

二,測試使用效果直接在cmd里輸入:wkhtmltopdf http://www.shwzzz.cn/ F:website1.pdf第一個是:運行軟件名稱(這個是不變的) 第二個是網址 第三個是生成后的路徑及文件名?;剀嚭笫遣皇强瓷粋€生成進度條的提示呢,恭喜您已經成功了,到你的生成目錄里看看是不是有一個剛生成的pdf文件呢。

三,php里調用php里調用是很簡單的,用shell_exec這個函數就可以了,如果shell_exec函數不能用看看php.ini里是否補禁用了。舉例:<?php shell_exec(“wkhtmltopdf http://www.shwzzz.cn/ 1.pdf”) ?>

三,解決分頁問題wkhtmltopdf 很好用,但也有些不盡人意。就是當一個html頁面很長我需要在指定的地方分頁那怎么辦呢? wkhtmltopdf 開發者在開發的時候并不是沒有考慮到這一點,例如下面這個html頁面:

[html] view plain copy print?<!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>  <html xmlns=“http://www.w3.org/1999/xhtml”>  <head>  <title>pdf</title>  <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />  </head>  <style type=“text/CSS”>  *{ margin:0px; padding:0px;}  div{ width:800px; height:1362px;margin:auto;}  </style>  <body>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  </body>  </html>  [html] view plain copy print?<!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>  <html xmlns=“http://www.w3.org/1999/xhtml”>  <head>  <title>pdf</title>  <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />  </head>  <style type=“text/css”>  *{ margin:0px; padding:0px;}  div{ width:800px; height:1362px;margin:auto;}  </style>  <body>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  </body>  </html>  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>pdf</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><style type="text/css">*{ margin:0px; padding:0px;}div{ width:800px; height:1362px;margin:auto;}</style><body><div style=" background:#030"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#F3C"></div><div style=" background:#F0F"></div><div style=" background:#0FF"></div><div style=" background:#FF0"></div><div style=" background:#00F"></div><div style=" background:#0F0"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#030"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#F3C"></div><div style=" background:#F0F"></div><div style=" background:#0FF"></div><div style=" background:#FF0"></div><div style=" background:#00F"></div><div style=" background:#0F0"></div></body></html>

當我把它生成pdf的時候我想讓每個塊都是一頁,經過無數次調試pdf的一頁大約是1362px,但是越往后值就不對了,目前還不知道pdf一頁是多少像素。

但是wkhtmltopdf 有個很好的方法,就是在那個div的樣式后添加一個:page-break-inside:avoid;就ok了。

[html] view plain copy print?<!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>  <html xmlns=“http://www.w3.org/1999/xhtml”>  <head>  <title>pdf</title>  <link href=“css/style.css” rel=“stylesheet” type=“text/css” />  <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />  </head>  <style type=“text/css”>  *{ margin:0px; padding:0px;}  div{ width:800px; min-height:1362px;margin:auto;page-break-inside:avoid;}  </style>  <body>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  </body>  </html><span style=“font-family:arial,verdana,sans-serif”><span style=“white-space:normal”> </span></span>  [html] view plain copy print?<!DOCTYPE html PUBLIC ”-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>  <html xmlns=“http://www.w3.org/1999/xhtml”>  <head>  <title>pdf</title>  <link href=“css/style.css” rel=“stylesheet” type=“text/css” />  <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />  </head>  <style type=“text/css”>  *{ margin:0px; padding:0px;}  div{ width:800px; min-height:1362px;margin:auto;page-break-inside:avoid;}  </style>  <body>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#030”></div>  <div style=“ background:#033”></div>  <div style=“ background:#369”></div>  <div style=“ background:#F60”></div>  <div style=“ background:#F3C”></div>  <div style=“ background:#F0F”></div>  <div style=“ background:#0FF”></div>  <div style=“ background:#FF0”></div>  <div style=“ background:#00F”></div>  <div style=“ background:#0F0”></div>  </body>  </html><span style=“font-family:arial,verdana,sans-serif”><span style=“white-space:normal”> </span></span>  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>pdf</title><link href="css/style.css" rel="stylesheet" type="text/css" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><style type="text/css">*{ margin:0px; padding:0px;}div{ width:800px; min-height:1362px;margin:auto;page-break-inside:avoid;}</style><body><div style=" background:#030"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#F3C"></div><div style=" background:#F0F"></div><div style=" background:#0FF"></div><div style=" background:#FF0"></div><div style=" background:#00F"></div><div style=" background:#0F0"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#030"></div><div style=" background:#033"></div><div style=" background:#369"></div><div style=" background:#F60"></div><div style=" background:#F3C"></div><div style=" background:#F0F"></div><div style=" background:#0FF"></div><div style=" background:#FF0"></div><div style=" background:#00F"></div><div style=" background:#0F0"></div></body></html> 

http://code.google.com/p/wkhtmltopdf/這個是wkhtmltopdf問題交流平臺,但是英文的。

wkhtmltopdf 中文參數詳解  

php使用事例:shell_exec(“wkhtmltopdf –orientation Landscape http://front.dfzx12.com/?r=report/studentgene/id/2 1234567.pdf”);shell_exec(“wkhtmltopdf –header-center ‘baobiao’ –page-width 50cm –header-line –margin-top 1cm –header-line 1.html oma11.pdf”);wkhtmltopdf [OPTIONS]… <input file> [More input files] <output file>常規選項  –allow <path>  允許加載從指定的文件夾中的文件或文件(可重復)–book*  設置一會打印一本書的時候,通常設置的選項   –collate  打印多份副本時整理   –cookie <name> <value>  設置一個額外的cookie(可重復)   –cookie-jar <path>  讀取和寫入的Cookie,并在提供的cookie jar文件   –copies <number>  復印打印成pdf文件數(默認為1)   –cover* <url>  使用HTML文件作為封面。它會帶頁眉和頁腳的TOC之前插入   –custom-header <name> <value>  設置一個附加的HTTP頭(可重復)   –debug-javascript  顯示的Javascript調試輸出 –default-header*  添加一個缺省的頭部,與頁面的左邊的名稱,頁面數到右邊,例如: –header-left ‘[webpage]’ –header-right ‘[page]/[toPage]’  –header-line   –disable-external-links*  禁止生成鏈接到遠程網頁  –disable-internal-links*  禁止使用本地鏈接–disable-javascript  禁止讓網頁執行JavaScript   –disable-pdf-compression*  禁止在PDF對象使用無損壓縮   –disable-smart-shrinking*  禁止使用WebKit的智能戰略收縮,使像素/ DPI比沒有不變   –disallow-local-file-access  禁止允許轉換的本地文件讀取其他本地文件,除非explecitily允許用 –allow –dpi <dpi>  顯式更改DPI(這對基于X11的系統沒有任何影響)   –enable-plugins  啟用已安裝的插件(如Flash  –encoding <encoding>  設置默認的文字編碼   –extended-help  顯示更廣泛的幫助,詳細介紹了不常見的命令開關   –forms*  打開HTML表單字段轉換為PDF表單域 –grayscale  PDF格式將在灰階產生–help  Display help   –htmldoc  輸出程序HTML幫助  –ignore-load-errors  忽略claimes加載過程中已經遇到了一個錯誤頁面 –lowquality  產生低品質的PDF/ PS。有用縮小結果文檔的空間   –manpage  輸出程序手冊頁 –margin-bottom <unitreal>  設置頁面下邊距 (default 10mm) –margin-left <unitreal>  將左邊頁邊距 (default 10mm) –margin-right <unitreal>  設置頁面右邊距 (default 10mm) –margin-top <unitreal>  設置頁面上邊距 (default 10mm)   –minimum-font-size <int>  最小字體大小 (default 5)   –no-background  不打印背景–orientation <orientation>  設置方向為橫向或縱向   –page-height <unitreal>  頁面高度 (default unit millimeter)   –page-offset* <offset>  設置起始頁碼 (default 1) –page-size <size>  設置紙張大小: A4, Letter, etc.     –page-width <unitreal>  頁面寬度 (default unit millimeter)   –passWord <password>  HTTP驗證密碼   –post <name> <value>  Add an additional post field (repeatable)   –post-file <name> <path>  Post an aditional file (repeatable)   –print-media-type*  使用的打印介質類型,而不是屏幕 –proxy <proxy>  使用代理 –quiet  Be less verbose –read-args-from-stdin  讀取標準輸入的命令行參數 –readme  輸出程序自述–redirect-delay <msec>  等待幾毫秒為JS-重定向(default 200) –replace* <name> <value>  替換名稱,值的頁眉和頁腳(可重復) –stop-slow-scripts  停止運行緩慢的JavaScripts –title <text>  生成的PDF文件的標題(第一個文檔的標題使用,如果沒有指定) –toc*  插入的內容的表中的文件的開頭–use-xserver*  使用X服務器(一些插件和其他的東西沒有X11可能無法正常工作) –user-style-sheet <url>  指定用戶的樣式表,加載在每一頁中–username <username>  HTTP認證的用戶名 –version  輸出版本信息退出  –zoom <float>  使用這個縮放因子 (default 1) 頁眉和頁腳選項–header-center*    <text>    (設置在中心位置的頁眉內容)  –header-font-name* <name>    (default Arial)  (設置頁眉的字體名稱)–header-font-size* <size>    (設置頁眉的字體大小)–header-html*  <url> (添加一個HTML頁眉,后面是網址)–header-left*  <text>   (左對齊的頁眉文本)–header-line*      (顯示一條線在頁眉下)–header-right* <text>    (右對齊頁眉文本)–header-spacing*   <real>    (設置頁眉和內容的距離,默認0)–footer-center*    <text>    (設置在中心位置的頁腳內容)  –footer-font-name* <name>    (設置頁腳的字體名稱) –footer-font-size* <size>    (設置頁腳的字體大小default 11)–footer-html*  <url> (添加一個HTML頁腳,后面是網址)–footer-left*  <text>    (左對齊的頁腳文本)–footer-line*      顯示一條線在頁腳內容上)–footer-right* <text>    (右對齊頁腳文本)–footer-spacing*   <real>    (設置頁腳和內容的距離)./wkhtmltopdf –footer-right ‘[page]/[topage]’ http://www.baidu.com baidu.pdf./wkhtmltopdf –header-center ‘報表’ –header-line –margin-top 2cm –header-line http://192.168.212.139/oma/  oma.pdf表內容選項中 –toc-depth* <level>  Set the depth of the toc (default 3)  –toc-disable-back-links*  Do not link from section header to toc  –toc-disable-links*  Do not link from toc to sections  –toc-font-name* <name>  Set the font used for the toc (default Arial)  –toc-header-font-name* <name>  The font of the toc header (if unset use –toc-font-name)  –toc-header-font-size* <size>  The font size of the toc header (default 15)  –toc-header-text* <text>  The header text of the toc (default Table Of Contents)  –toc-l1-font-size* <size>  Set the font size on level 1 of the toc (default 12)  –toc-l1-indentation* <num>  Set indentation on level 1 of the toc (default 0)  –toc-l2-font-size* <size>  Set the font size on level 2 of the toc (default 10)  –toc-l2-indentation* <num>  Set indentation on level 2 of the toc (default 20)  –toc-l3-font-size* <size>  Set the font size on level 3 of the toc (default 8)  –toc-l3-indentation* <num>  Set indentation on level 3 of the toc (default 40)  –toc-l4-font-size* <size>  Set the font size on level 4 of the toc (default 6)  –toc-l4-indentation* <num>  Set indentation on level 4 of the toc (default 60)  –toc-l5-font-size* <size>  Set the font size on level 5 of the toc (default 4)  –toc-l5-indentation* <num>  Set indentation on level 5 of the toc (default 80)  –toc-l6-font-size* <size>  Set the font size on level 6 of the toc (default 2)  –toc-l6-indentation* <num>  Set indentation on level 6 of the toc (default 100)  –toc-l7-font-size* <size>  Set the font size on level 7 of the toc (default 0)  –toc-l7-indentation* <num>  Set indentation on level 7 of the toc (default 120)  –toc-no-dots*  Do not use dots, in the toc輪廓選項 –dump-outline <file>  轉儲目錄到一個文件 –outline  顯示目錄(文章中h1,h2來定) –outline-depth <level>  設置目錄的深度(默認為4)頁腳和頁眉 * [page]       由當前正在打印的頁的數目代替 * [frompage]   由要打印的第一頁的數量取代 * [topage]     由最后一頁要打印的數量取代 * [webpage]    通過正在打印的頁面的URL替換 * [section]    由當前節的名稱替換 * [subsection] 由當前小節的名稱替換 * [date]       由當前日期系統的本地格式取代 * [time]       由當前時間,系統的本地格式取代 ./wkhtmltopdf –footer-right ‘[page]/[topage]’ http://www.baidu.com baidu.pdf ./wkhtmltopdf –header-center  ’報表’ –outline  –header-line –margin-top 2cm –header-line http://www.hao123.com/  hao123.pdf ./wkhtmltopdf –header-left ‘[webpage]’ –footer-center ‘測試([page]/[toPage])’ http://www.baidu.com baidu.pdf

內容轉載自http://blog.csdn.net/mengke1124/article/details/43604889


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产综合在线视频| 欧美在线观看视频| 亚洲色图日韩av| 亚洲精品中文字幕有码专区| 成人免费xxxxx在线观看| 91精品视频在线看| 亚洲精品美女在线观看播放| 亚洲成人免费在线视频| 揄拍成人国产精品视频| 久久久久久国产精品美女| 国内精品久久久久久中文字幕| 欧美日韩久久久久| 日韩日本欧美亚洲| 日韩av中文字幕在线播放| 国产精品免费久久久久久| 国产日本欧美在线观看| 成人免费看片视频| 亚洲综合视频1区| 国产精品久久久久久久久粉嫩av| 91亚洲精品在线观看| 欧美激情国产高清| 欧美激情在线一区| 92福利视频午夜1000合集在线观看| 欧美性xxxx极品hd欧美风情| 2019中文字幕在线观看| 91chinesevideo永久地址| 欧美大尺度在线观看| 九九热精品视频| 68精品国产免费久久久久久婷婷| 国产精品久久久久久亚洲调教| 日韩福利视频在线观看| 国产精品福利在线观看网址| 一区二区三区四区在线观看视频| 91精品视频免费| 成人福利视频网| 亚洲aaa激情| 亚洲成人黄色网址| 精品亚洲男同gayvideo网站| 欧美精品在线免费播放| 国产精品久在线观看| 在线免费看av不卡| 欧美夜福利tv在线| 国产精品www色诱视频| 日韩欧美精品网址| 久久久久国产精品免费网站| 欧美风情在线观看| 精品露脸国产偷人在视频| 国产福利精品av综合导导航| 97在线看免费观看视频在线观看| 成人精品网站在线观看| 久久久噜久噜久久综合| 国产精品久久久久久久久久久不卡| 欧美午夜久久久| 久久免费成人精品视频| 亚洲xxxxx电影| 欧美激情极品视频| 中日韩美女免费视频网站在线观看| 91久久精品国产91久久| 国模视频一区二区三区| 国色天香2019中文字幕在线观看| 日韩精品中文字幕在线播放| xxav国产精品美女主播| 中文字幕一区二区精品| 亚洲精品美女网站| 国产精品免费在线免费| 欧美视频免费在线观看| 日韩欧美aaa| 亚洲成人久久一区| 欧美伊久线香蕉线新在线| 国产成人精品在线| 欧美插天视频在线播放| 色综合视频网站| 亚洲欧洲第一视频| 国产精品专区h在线观看| 国产综合香蕉五月婷在线| 中文字幕免费精品一区| 成人国产精品一区| 日本久久久久久| 日韩激情第一页| 欧洲一区二区视频| 欧美性极品少妇精品网站| 亚洲精品久久久久久久久久久久| 日韩成人免费视频| 久久躁日日躁aaaaxxxx| 久久久久久久网站| 亚洲欧美日韩一区二区三区在线| 久久视频国产精品免费视频在线| 少妇久久久久久| 欧美国产日韩一区二区| 夜夜嗨av一区二区三区免费区| 欧美中文在线观看| 91精品国产色综合| 欧美成人免费va影院高清| 成人乱人伦精品视频在线观看| 欧美电影免费观看高清完整| 九九精品视频在线| 日韩亚洲精品视频| 日韩精品视频在线观看免费| 18一19gay欧美视频网站| 精品久久久久久久久久久久久久| 欧美性猛交xxxx| 在线视频中文亚洲| 久久频这里精品99香蕉| 亚洲最大福利网| 亚洲免费高清视频| 欧美日韩成人黄色| 国产成人精品日本亚洲专区61| 伊人一区二区三区久久精品| 国产亚洲成av人片在线观看桃| 欧美在线欧美在线| 国产精品久久久久免费a∨| 国产精品国语对白| 亚洲国产精品一区二区久| 国产欧美精品在线播放| 国产精品久久久久久久久久久久| 中文字幕亚洲天堂| 美女福利精品视频| 国产日韩在线观看av| 国产综合在线看| 97精品视频在线观看| 97香蕉超级碰碰久久免费的优势| 成人久久久久久| 一本一本久久a久久精品综合小说| 欧美老肥婆性猛交视频| 国产精品偷伦一区二区| 91豆花精品一区| 色999日韩欧美国产| 精品国产一区二区三区久久久狼| 久久免费在线观看| www.美女亚洲精品| 国产精品久久久久77777| 欧美xxxx18性欧美| 国产精品精品国产| 全亚洲最色的网站在线观看| 日韩高清av在线| 日韩黄在线观看| 久久久亚洲精选| 亚洲精品小视频在线观看| 中文字幕日本欧美| 麻豆精品精华液| 亚洲男女自偷自拍图片另类| 久热精品视频在线观看一区| 国产在线98福利播放视频| 精品人伦一区二区三区蜜桃免费| 欧美亚洲激情在线| 国产精品网站视频| 久久99亚洲热视| 精品性高朝久久久久久久| 久热在线中文字幕色999舞| 欧美三级xxx| 亚洲欧美中文另类| 国产一区二区三区网站| 亚洲精品欧美一区二区三区| 在线观看不卡av| 欧美xxxx做受欧美| 国产精品偷伦视频免费观看国产| 国产精品一区二区三区免费视频| 91高清视频在线免费观看| 欧美乱大交做爰xxxⅹ性3| 国产精品v片在线观看不卡| 日韩欧美高清视频| 亚洲美女av网站| 青青草原成人在线视频| 亚洲精品在线不卡|