批量设置图片尺寸

ct-mobile-first
ycc 5 years ago
parent 0ad7109294
commit c0e5d62b5f

@ -22,6 +22,7 @@ class Information extends CI_Controller
$this->load->model('Infoauthors_model');
$this->load->model('InfoSMS_model');
$this->load->library('Amplib'); //加载AMP处理类
$this->load->library('html_optimize_lib'); //加载HTML优化类
}
public function index()
@ -146,6 +147,7 @@ class Information extends CI_Controller
if ($Structure == FALSE) {
show_404();
}
//查询结构根节点
$rootStructure = $this->InfoStructures_model->GetParent($Structure->is_path, 1);
//没有根节点就从它本身开始查询
@ -576,6 +578,8 @@ class Information extends CI_Controller
return false;
}
if ($this->html_file_helper('find', $information->ic_url)) {
//设置图片尺寸
$information->ic_content=$this->html_optimize_lib->set_image_size($information->ic_content);
$this->make_www_cache('pc', $information);
$this->make_www_cache('mobile', $information);
echo json_encode(array('name' => 'yes', 'data' => '更新成功!'));

@ -0,0 +1,74 @@
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* HTML的优化处理的类库
*/
class html_optimize_lib
{
var $CI;
public function __construct()
{
$this->CI = &get_instance();
$this->CI->load->model('Information_model');
$this->CI->load->model('InfoMetas_model');
$this->CI->load->library('simple_html_dom_lib');
}
//获取图片尺寸
public function set_image_size($html)
{
$html_object = str_get_html($html);
//拼接图片链接,获取尺寸
$request_size = array();
foreach ($html_object->find('img') as $image) {
$img_src = $image->src;
if (!empty($image->originalsrc)) {
$img_src = $image->originalsrc;
}
if (strpos($img_src, '//data.') !== false || strpos($img_src, '//images.') !== false) {//以data或者images开头的域名才能获取尺寸
$img_src_urls = parse_url($img_src);
$request_size[$img_src_urls['host']][] = $img_src_urls['path'];
}
}
//请求图片尺寸
$image_sizes = array();
foreach ($request_size as $host => $path) {
$parse_url = "https://{$host}/imagesize.php?photo=" . implode(',', $path);
$size_data = GET_HTTP($parse_url);
if (!empty($size_data)) {
$size_data = json_decode($size_data);
foreach ($size_data as $size_item) {
$size_item->photo = "https://{$host}" . $size_item->photo;
$image_sizes[$size_item->photo] = $size_item;
}
}
}
//把尺寸写入html内容中
foreach ($html_object->find('img') as $image) {
$img_src = $image->src;
if (!empty($image->originalsrc)) {
$img_src = $image->originalsrc;
}
if(!empty($image_sizes[$img_src])){
$image->width=$image_sizes[$img_src]->width;
$image->height=$image_sizes[$img_src]->height;
}
}
return $html_object;
//print_r($request_size);
//print_r($image_sizes);
}
}

@ -5,7 +5,7 @@
<?php if (!empty($info_howtoplan)) { ?>
<div class="articlenext">
<a href="<?php echo $info_howtoplan->ic_url; ?>" rel="nofollow"><img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="1" height="1"
originalsrc="<?php echo $info_howtoplan->ic_photo; ?>"
alt="<?php echo $info_howtoplan->ic_title; ?>" class="img-responsive"></a>
<span class="categorycenter"><?php echo $info_howtoplan_root->ic_title; ?></span>
@ -17,7 +17,7 @@
<?php if (!empty($info_besttime)) { ?>
<div class="articlenext">
<a href="<?php echo $info_besttime->ic_url; ?>" rel="nofollow"><img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="1" height="1"
originalsrc="<?php echo $info_besttime->ic_photo; ?>"
alt="<?php echo $info_besttime->ic_title; ?>" class="img-responsive"></a>
<span class="categorycenter"><?php echo $info_besttime_root->ic_title; ?></span>
@ -29,7 +29,7 @@
<?php if (!empty($info_topthings)) { ?>
<div class="articlenext">
<a href="<?php echo $info_topthings->ic_url; ?>" rel="nofollow"><img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="1" height="1"
originalsrc="<?php echo $info_topthings->ic_photo; ?>"
alt="<?php echo $info_topthings->ic_title; ?>" class="img-responsive"></a>
<span class="categorycenter"><?php echo $info_topthings_root->ic_title; ?></span>
@ -41,7 +41,7 @@
<?php if (!empty($info_hotel)) { ?>
<div class="articlenext">
<a href="<?php echo $info_hotel->ic_url; ?>" rel="nofollow"><img
src="https://data.chinahighlights.com/grey.gif" loader="lazy"
src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="1" height="1"
originalsrc="<?php echo $info_hotel->ic_photo; ?>"
alt="<?php echo $info_hotel->ic_title; ?>" class="img-responsive"></a>
<span class="categorycenter"><?php echo $info_hotel_root->ic_title; ?></span>

@ -43,12 +43,14 @@
<a href="/" class="p_toplogo"> <img src="https://data.chinahighlights.com/pic/logo/china-highlights-top-navigation-logo.png"
alt="chinahighlights logo"
width="154" height="83"
class="chinahighlightslogo img-responsive"></a>
<div class="p_topnavigation">
<ul class="pctopnavi">
<li class="dropdown"><a href="/tour/" class="p_topnavilink">China Tours</a>
<div class="chinatourspc dropdown-content">
<img src="https://data.chinahighlights.com/pic/guide/ch-pc-top-navigation-china-tour-forbidden-city.jpg"
width="1275" height="224"
class="img-responsive topnavipic">
<div class="menulinkbox">
@ -77,6 +79,7 @@
<div class="destinationspc dropdown-content">
<img src="https://data.chinahighlights.com/pic/guide/ch-pc-top-navigation-destination-shanghai.jpg"
width="1275" height="224"
class="img-responsive topnavipic">
<ul class="list-reset sidebar">
<li class="start-nav-item"><a href="/beijing/tours.htm">Beijing</a></li>
@ -95,6 +98,7 @@
<li class="dropdown"><a href="/travelguide/" class="p_topnavilink">Travel Guide</a>
<div class="travelguidepc dropdown-content">
<img src="https://data.chinahighlights.com/pic/guide/ch-pc-top-navigation-travel-guide-panda.jpg"
width="1275" height="224"
class="img-responsive topnavipic">
<ul class="list-reset sidebar">
@ -117,6 +121,7 @@
<li class="dropdown"><a href="/travelguide/culture/" class="p_topnavilink">Culture</a>
<div class="culturepc dropdown-content">
<img src="https://data.chinahighlights.com/pic/guide/ch-pc-top-navigation-culture-great-wall.jpg"
width="1275" height="224"
class="img-responsive topnavipic">
<div class="container">
@ -195,7 +200,7 @@
<div class="aboutusleft">
<div class="bottomaboutus">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="180px" style="float: left;
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" width="180" height="128" style="float: left;
margin-right: 30px;">
<div class="aboutusinfo">China Highlights tailor-makes China tours to help travelers discover China
their way. We're a passionate team of one hundred avid travelers who love to share our knowledge
@ -233,7 +238,7 @@
<div class="aboutusright">
<div class="bottompctitle">Featured on</div>
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="info template feature on"
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="436" height="250" originalsrc="https://data.chinahighlights.com/pic/guide/info-template-feature-on.png" alt="info template feature on"
class="img-responsive bottomfeature">
@ -266,7 +271,7 @@
</div>
<div class="bottommembers">
<div class="memberIcons">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/css/images/global/member-icons.png">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" width="363" height="67" originalsrc="https://data.chinahighlights.com/css/images/global/member-icons.png">
</div>
</div>
</div>
@ -278,6 +283,8 @@
<img src="https://data.chinahighlights.com/grey.gif"
originalsrc="https://data.chinahighlights.com/pic/guide/info-template-bottom-logo.jpg"
width="114"
height="71"
loader="lazy"
class="img-responsive bottomlogopc">
<span class="bottomcopyright">© 1998-2021 China Highlights — Discovery Your Way! </span>

@ -29,7 +29,7 @@
<!--头部导航-->
<header class="headerbar flex justify-start items-center top-0 left-0 right-0 pl2 pr4 pt2 md-pt0" id="header">
<div role=button tabindex=0>
<a href="/"> <img src="https://data.chinahighlights.com/pic/logo/china-highlights-top-navigation-logo.png" alt="chinahighlights logo" class="chinahighlightslogo img-responsive"></a>
<a href="/"> <img src="https://data.chinahighlights.com/pic/logo/china-highlights-top-navigation-logo.png" width="154" height="83" alt="chinahighlights logo" class="chinahighlightslogo img-responsive"></a>
<div class="topnavitailor">
<a href="/contactus/" class="infocustomize">Contact Us <i aria-hidden="true"
class="fa fa-caret-right toptailorarrow"></i></a>
@ -172,7 +172,7 @@
<div class="infobottom">
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo" width="150px" class="bottomlogocenter"> <div class="bottomlogoinfo">China Highlights tailor-makes China tours to help travelers discover China
<img src="https://data.chinahighlights.com/grey.gif" loader="lazy" originalsrc="https://data.chinahighlights.com/pic/logo/bottom-logo-b.png" alt="China Highlights Logo" width="152px" height="108" class="bottomlogocenter"> <div class="bottomlogoinfo">China Highlights tailor-makes China tours to help travelers discover China
their way. <a href="/aboutus/">more
...</a></div>

Loading…
Cancel
Save