开发者

CAn't resize image with GDlib2

I'm trying to resize an image of more than 3000px in width, it upload开发者_运维知识库s fine if i do not resize it, but as soon as I resize the image it does not want to upload and resize, this is funny and I can't seem to understnd, since if the width of the image is alot smaller everthing works just fine. Are there limitations to this?


Try this... Not Using GD but i think it will work for u.

<?php
function Image($image, $crop = null, $size = null) {
$image = ImageCreateFromString(file_get_contents($image));

 if (is_resource($image) === true) {
$x = 0;
$y = 0;
$width = imagesx($image);
$height = imagesy($image);

/*
CROP (Aspect Ratio) Section
*/

if (is_null($crop) === true) {
    $crop = array($width, $height);
} else {
    $crop = array_filter(explode(':', $crop));

    if (empty($crop) === true) {
            $crop = array($width, $height);
    } else {
        if ((empty($crop[0]) === true) || (is_numeric($crop[0]) === false)) {
                $crop[0] = $crop[1];
        } else if ((empty($crop[1]) === true) || (is_numeric($crop[1]) === false)) {
                $crop[1] = $crop[0];
        }
    }

    $ratio = array(0 => $width / $height, 1 => $crop[0] / $crop[1]);

    if ($ratio[0] > $ratio[1]) {
        $width = $height * $ratio[1];
        $x = (imagesx($image) - $width) / 2;
    }

    else if ($ratio[0] < $ratio[1]) {
        $height = $width / $ratio[1];
        $y = (imagesy($image) - $height) / 2;
    }

}

/*
Resize Section
*/

if (is_null($size) === true) {
    $size = array($width, $height);
}

else {
    $size = array_filter(explode('x', $size));

    if (empty($size) === true) {
            $size = array(imagesx($image), imagesy($image));
    } else {
        if ((empty($size[0]) === true) || (is_numeric($size[0]) === false)) {
                $size[0] = round($size[1] * $width / $height);
        } else if ((empty($size[1]) === true) || (is_numeric($size[1]) === false)) {
                $size[1] = round($size[0] * $height / $width);
        }
    }
}

  $result = ImageCreateTrueColor($size[0], $size[1]);

if (is_resource($result) === true) {
    ImageSaveAlpha($result, true);
    ImageAlphaBlending($result, true);
    ImageFill($result, 0, 0, ImageColorAllocate($result, 255, 255, 255));
    ImageCopyResampled($result, $image, 0, 0, $x, $y, $size[0], $size[1], $width, $height);

    ImageInterlace($result, true);
    ImageJPEG($result, null, 90);
}
}

return false;
 }

header('Content-Type: image/jpeg');
 Image('image.jpg', '2:1', '1200x');

?>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜