第一次釋出一個作品,利用wkhtmltopdf 和 thinkphp,線上將網頁轉成pdf,輸入網址,生成pdf或者圖片(JPG格式)。
API程式碼
API程式碼
$url="http://www.baidu.com/";//替換為要轉換的網址 $urlencode=urlencode($url);//urlencode,UTF8格式 $apiurl="http://pdf.nextbig.net/Api/htmltopdf.html?apicode=freeapi123&url=".$urlencode; $apiurl=$apiurl."&mktype=pdf";//如果要轉換為PDF,就加這行,不加這行就轉化為jpg格式 $outfileurl=file_get_contents($apiurl);//生成內容的網址,有效期為10分鐘到60分鐘,隨機,請及時把它取出,否則會刪除掉。
評論(7)