0

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

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

用 chrome 截取的屏幕截图

可悲的是,这就是 Firefox 和 ie 所做的:(裁剪)

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 无关)才能让它在所有浏览器中正常工作?

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

4

2 回答 2

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;
}

尝试为调试部分设置每个可能在每个请求上更改为固定值的变量。

我希望我能帮助你

于 2013-02-25T11:50:43.920 回答
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") ; 
}
于 2013-02-26T09:31:34.043 回答