之前发了一个typecho添加每天60S读懂世界

也是有同学来问我有没有头部星期几的这个图片,趁着五一随便搞个吧,代码网上抄的(能抄则抄)。

原理很简单,就是把早报的图片截取顶部的图片就行了

<?php
$src_path = 'https://api.03c3.cn/zb/';
$src = imagecreatefromstring(file_get_contents($src_path));
$x = 50;
$y = 50;
$width = 520;
$height = 285;
$final_width = 500;
$final_height=188;
$new_image = imagecreatetruecolor($final_width, $final_height);
imagecopyresampled($new_image, $src, 0, 0, $x, $y, $final_width, $final_height, $width, $height);
imagejpeg($new_image, 'map.jpg');

因为每天的都不一样,所以需要每天定时访问一下来获取最新的图

没有其他需求的直接在文章设置头图地址为:https://api.03c3.cn/zb/H.php

头图样式选择 图片板式是比较好的

最后修改:2022 年 05 月 02 日
如果觉得我的文章对你有用,请随意赞赏