代码拉取完成,页面将自动刷新
<?php
header('Content-type: image/png');
// define('__DIR__',dirname(__FILE__).'\\');
error_log(__DIR__);
list($width, $height) = getimagesize(__DIR__.'\\222.png');
$new_width = $width * 0.3;
$new_height = $height * 0.3;
$im2 = imagecreatetruecolor($new_width, $new_height);
$im = imagecreatefrompng(__DIR__.'\\222.png');
imagecopyresampled($im2, $im, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagepng($im2);
imagedestroy($im);
Imagedestroy($im2);
?>
<!-- 图像微缩 -->
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。