imagecopyresampled在ie / ff中调整铬作物的大小

时间:2013-02-25 09:34:06

标签: php image gd image-resizing

我遇到了以下问题。我用gd制作了一个缩略图,当我用它运行时,这就是它的作用:

这正是我所期望的(调整大小)

screenshot taken in chrome

遗憾的是,这就是firefox所做的事情:(裁剪它)

image taken in ff

我有以下代码来处理我的调整大小:

// this image is created by another php file when text is filled in
$file = "hidden.png";
$size = GetImageSize($file);
if($size !== false){
$w = $size[0];
$h = $size[1];
//set new size
$nw = $_GET['width'];
$nh = ($nw*$h)/$w;
}
else{
//set new size
$nw = 400;
$nh = 200;
} 
//draw the image
$src_img = imagecreatefrompng($file);
$dst_img = imagecreatetruecolor($nw,$nh);
imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $nw, $nh, $w, $h);
//resizing the    image
imagepng($dst_img);
imagedestroy($src_img);
imagedestroy($dst_img);  

我已经在堆栈和谷歌上搜索了abit,我唯一能找到的是使用css的解决方案,我不需要因为我的图像不是这样构建的。

我需要做什么代码(而不是css相关)才能让它在所有浏览器中正常工作?

如果需要,我可以发布更多代码

2 个答案:

答案 0 :(得分:0)

它与浏览器无关,因为这不是php的工作方式。 首先,在服务器上解释php代码,然后将结果传递给客户端(浏览器)。

因此,在我看来,您应首先检查图像生成是否正常。意味着它每次都产生相同的图像。那你应该检查一下这个部分:

if($size !== false){
   $w = $size[0];
   $h = $size[1];
   $nw = $_GET['width']; // <---- For Debugging set here a static number
   $nh = ($nw*$h)/$w;
}

尝试设置调试部分,每个变量都可以在每个请求上更改为修复值。

我希望我能帮到你

答案 1 :(得分:0)

我通过将上述脚本与我现有的脚本合并来生成图像来解决问题。

/* Get image info */
if(!isset($_POST['width']) && !isset($_POST['height']))
{
$width = '200';
$height = '100';
}
else
{
$width  = $_POST['width'] ;
$height = $_POST['height'];  
}
$Image = imagecreatetruecolor($width,$height) ;
$sx = imagesx($Image) ;
$sy = imagesy($Image) ;
/*Check if RGB values have been set*/
if(!isset($_POST['r'])) {     $R = 255; } else {     $R = $_POST['r']; } 
if(!isset($_POST['g'])) {     $G = 255; } else {     $G = $_POST['g']; } 
if(!isset($_POST['b'])) {     $B = 255; } else {     $B = str_replace(")" , "" ,  $_POST['b']); }

/*Check if the text value is set   */
if(!isset($_POST['text'])) {$Text = "Uw tekst hier";}
else if($_POST['text'] == '') {$Text = "Uw tekst hier";}
else {$Text = $_POST['text'];}

/*Check if the font is set */
if(!isset($_POST['font'])) {$Font="./Fonts/arial.ttf" ;}
else{$Font= "./fonts/".$_POST['font'].".ttf";}

$FontColor = ImageColorAllocate ($Image,$R,$G,$B) ;    //TextColor
$FontShadow = ImageColorAllocate ($Image,0,0,0) ;   //BackGroundColor
$Rotation = 0 ;
/* Iterate to get the size up */
$FontSize=1 ;
do
    {
    $FontSize *= 1.1 ;
    $Box = @ImageTTFBBox($FontSize,0,$Font,$Text);
    $TextWidth = abs($Box[2] - $Box[6]) ;
    $TextHeight = abs($Box[3] - $Box[7]) ;
    }
while ($TextWidth < $sx*0.94) ;
/*  Awkward maths to get the origin of the text in the right place */ 
$x = $sx/2  - cos(deg2rad($Rotation))*$TextWidth/2;
$y = $sy/2  + sin(deg2rad($Rotation))*$TextWidth/2 + cos(deg2rad($Rotation))*$TextHeight/2 ;


imagefilledrectangle($Image, 0, 0, $sx , $sy , $FontShadow);
ImageTTFText ($Image,$FontSize,$Rotation,-$Box[6] ,-$Box[7],$FontColor,$Font,$Text);

if(isset($_POST['resize']) && $_POST['resize'] == 1)
{
    $nw = 400;
    $nh = 200;        

    $src_img = $Image;
    $dst_img = imagecreatetruecolor($nw,$nh);
    imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $nw, $nh, $sx, $sy);//resizing    the image
    imagepng($dst_img, "hidden.png");
    imagedestroy($src_img);
    imagedestroy($dst_img); 
}
else
{
  //header('Content-type: image/png');
  Imagepng($Image, "hidden.png") ; 
}