2012-04-04 88 views
0

我没有太多的时间来写,所以会告诉你我的问题,我有一个PHP代码,裁剪图像的好处是,它裁剪图像真的很好,当我把$ thumb_width和$ thumb_height具有相同的值,但在这种情况下,我不是我想要的图像与此分辨率(200 * 150) 这里的代码,我找不到错误。作物图像php变形,扭曲

<?php 
function create_thumb($directory, $image, $destination) { 
$image_file = $image; 
$image = $directory.$image; 

if (file_exists($image)) { 

$source_size = getimagesize($image); 

if ($source_size !== false) { 

    $thumb_width = 200; 
    $thumb_height = 150; 

    switch($source_size['mime']) { 
    case 'image/jpeg': 
     $source = imagecreatefromjpeg($image); 
    break; 
    case 'image/png': 
     $source = imagecreatefrompng($image); 
    break; 
    case 'image/gif': 
     $source = imagecreatefromgif($image); 
    break; 
    } 

    $source_aspect = round(($source_size[0]/$source_size[1]), 1); 
    $thumb_aspect = round(($thumb_width/$thumb_height), 1); 

    if ($source_aspect < $thumb_aspect) { 
    $new_size = array($thumb_width, ($thumb_width/$source_size[0]) * $source_size[1]); 
    $source_pos = array(0, ($new_size[1] - $thumb_height)/2); 
    } else if ($source_aspect > $thumb_aspect) { 
    $new_size = array(($thumb_width/$source_size[1]) * $source_size[0], $thumb_height); 
    $source_pos = array(($new_size[0] - $thumb_width)/2, 0); 
    } else { 
    $new_size = array($thumb_width, $thumb_height); 
    $source_pos = array(0, 0); 
    } 

    if ($new_size[0] < 1) $new_size[0] = 1; 
    if ($new_size[1] < 1) $new_size[1] = 1; 

    $thumb = imagecreatetruecolor($thumb_width, $thumb_height); 
    imagecopyresampled($thumb, $source, 0, 0, $source_pos[0], $source_pos[1], $new_size[0],                $new_size[1], $source_size[0], $source_size[1]); 

    switch($source_size['mime']) { 
    case 'image/jpeg': 
     imagejpeg($thumb, $destination.$image_file); 
    break; 
    case 'image/png': 
      imagepng($thumb, $destination.$image_file); 
    break; 
    case 'image/gif': 
     imagegif($thumb, $destination.$image_file); 
    break; 
} 


} 

} 
} 
?> 
在这个例子中

,如果我把(533px * 300像素),它的变形的图像,包裹“对不起,我的英语=)”,请我需要帮助与此有关。如果你找到解决方案,我会很开心。

谢谢,Matias。

回答

1

This id dilli。

在第46行中,您给出了更多空间,因此您需要删除该行中不需要的空格。

+0

请问白色空间物质? – 2012-10-18 06:46:11

0

是的。即使我们提供了多个空格,通常也只有一个空格。但是在这里存在多个“& nbsp”的空间。

语法错误:imagecopyresampled($拇指,$源,0,0,$ source_pos [0],$ source_pos [1],$ new_size [0],                                                      $ new_size [1],$ source_size [0],$ source_size [1]);

正确语法:imagecopyresampled($ thumb,$ source,0,0,$ source_pos [0],$ source_pos [1],$ new_size [0],$ new_size [1],$ source_size [0],$ source_size [1]);