xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

  • 大小: 0.86KB
    文件類型: .php
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-01-30
  • 標(biāo)簽: 圖片??掃描放大??php??

資源簡介

【實例簡介】

PHP代碼,可以掃描圖片,并進(jìn)行放大

【核心代碼】


$img = imagecreatetruecolor($width,$height);
for($y = 0; $y < $height; $y )
{
for($x = 0; $x < $width; $x )
{
$colors_reg = imagecolorsforindex($image, imagecolorat($image, $x/$multiple, $y/$multiple));
$color = imagecolorallocate($img,$colors_reg['red'],$colors_reg['green'],$colors_reg['blue']);

for($i=$y;$i<$multiple $y;$i ){
for($j=$x;$j<$multiple $x;$j ){
imagesetpixel($img,$j,$i,$color);
}
}





$x = $x ($multiple-1);
}
$y = $y ($multiple-1);
}
imagepng($img);


資源截圖

代碼片段和文件信息

//輸出圖像數(shù)據(jù)
function?imagepgm($imgurl?$filename?$multiple=1)
{
header(“content-type:image/png;charset=utf-8“);
header(‘Content-Disposition:?attachment;filename=“‘.$filename.‘.png“‘);
$image?=?imagecreatefrompng($imgurl);
$width?=?imagesx($image)*$multiple;
$height?=?imagesy($image)*$multiple;

$img?=?imagecreatetruecolor($width$height);
for($y?=?0;?$y? {
for($x?=?0;?$x? {
$col

評論

共有 條評論