如何为Amazon S3存储桶调整大小并上传图像?

问题描述 投票:0回答:1

我正在尝试使用imagecopyresampled()调整图像大小,同时在将图像上传到S3之前,使用imagecreatefromjpeg()从图像中删除EXIF数据。我不确定我缺少什么,因为图像已上传但没有调整大小。

$fileToUpload = 'file';
$tmp_name = $_FILES["$fileToUpload"]['tmp_name'];
$file_name        = ($_FILES["$fileToUpload"]["name"]);

        $src = imagecreatefromjpeg($tmp_name);
        list($width_orig, $height_orig) = getimagesize($tmp_name);
        $width = 50; //px
        $height = 50; //px
        $image_p = imagecreatetruecolor($width, $height); // resize image
        imagecopyresampled($image_p, $src, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);//changes original image


                $config = [
                    's3-access' => [
                        'key' => 'awsAccessKey',
                        'secret' => 'awsSecretKey',
                        'bucket' => 'awsBucket',
                        'region' => 'us-east-1', 
                        'version' => 'latest',
                        'acl' => 'public-read',
                        'private-acl' => 'private'
                    ]
                ];     //# initializing s3
                $s3 = Aws\S3\S3Client::factory([
                    'credentials' => [
                        'key' => $config['s3-access']['key'],
                        'secret' => $config['s3-access']['secret']
                    ],
                    'version' => $config['s3-access']['version'],
                    'region' => $config['s3-access']['region']
                ]);
                $request_status = $s3->putObject([
                    'Bucket' => $config['s3-access']['bucket'],
                    'Key' => $file_name,
                    'SourceFile' => $tmp_name,
                    'ACL' => $config['s3-access']['acl']
                ]);
php exif php-gd
1个回答
0
投票

您正在拉出映像并在其上运行imagecopyresampled,但是您从未将新映像写入磁盘,而只是上传原始文件。

尝试一下:

$fileToUpload = 'file';
$tmp_name = $_FILES["$fileToUpload"]['tmp_name'];
$file_name = $_FILES["$fileToUpload"]["name"];

list($width_orig, $height_orig) = getimagesize($tmp_name);
$width = 50;
$height = 50;
// get the old image from disk
$src = imagecreatefromjpeg($tmp_name);
// create a new image
$image_p = imagecreatetruecolor($width, $height);
// resample the old image into the new image
imagecopyresampled($image_p, $src, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
// clean up
imagedestroy($src);
// save the new image to disk
imagejpeg($image_p, $tmp_name);
// clean up
imagedestroy($image_p);

$config = [
    's3-access' => [
        'key' => 'awsAccessKey',
        'secret' => 'awsSecretKey',
        'bucket' => 'awsBucket',
        'region' => 'us-east-1', 
        'version' => 'latest',
        'acl' => 'public-read',
        'private-acl' => 'private',
    ]
];

$s3 = Aws\S3\S3Client::factory([
    'credentials' => [
        'key' => $config['s3-access']['key'],
        'secret' => $config['s3-access']['secret'],
    ],
    'version' => $config['s3-access']['version'],
    'region' => $config['s3-access']['region'],
]);

$request_status = $s3->putObject([
    'Bucket' => $config['s3-access']['bucket'],
    'Key' => $file_name,
    'SourceFile' => $tmp_name,
    'ACL' => $config['s3-access']['acl'],
]);
© www.soinside.com 2019 - 2024. All rights reserved.