gpt4 book ai didi

php - 使用php将图像保存到服务器

转载 作者:行者123 更新时间:2023-12-04 06:57:09 25 4
gpt4 key购买 nike

嘿,我有以下脚本,基本上是一个 Flash 文件向它发送一些数据并创建一个图像,然后为用户打开一个另存为对话框,以便他们可以将图像保存到那里 system.Here 问题来了,怎么会我还要将图像保存到我的服务器?

<?php

$to = $_POST['to'];
$from = $_POST['from'];
$fname = $_POST['fname'];
$send = $_POST['send'];

$data = explode(",", $_POST['img']);
$width = $_POST['width'];
$height = $_POST['height'];
$image=imagecreatetruecolor( $width ,$height );
$background = imagecolorallocate( $image ,0 , 0 , 0 );
//Copy pixels
$i = 0;
for($x=0; $x<=$width; $x++){
for($y=0; $y<=$height; $y++){
$int = hexdec($data[$i++]);
$color = ImageColorAllocate ($image, 0xFF & ($int >> 0x10), 0xFF & ($int >> 0x8), 0xFF & $int);
imagesetpixel ( $image , $x , $y , $color );
}
}
//Output image and clean
#header("Content-Disposition: attachment; filename=test.jpg" );
header("Content-type: image/jpeg");

ImageJPEG( $image );
imagedestroy( $image );
?>

帮助将不胜感激!

最佳答案

imagejpeg( $image, $filename );

将图像保存到 $filename .所以基本上可以做
imagejpeg( $image, $filename );
imagedestroy( $image );
readfile( $filename );

而不是只是打电话
imagejpeg( $image );

关于php - 使用php将图像保存到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2431695/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com