调整图像大小并显示而不保存

Posted

技术标签:

【中文标题】调整图像大小并显示而不保存【英文标题】:Resize image and display without saving it 【发布时间】:2013-03-10 07:27:17 【问题描述】:

我已经建立了一个图片库并“按原样”保存了图片,没有裁剪它。我想在控制器中加载图像时动态调整图像大小,因此当我在浏览器中加载控制器时,它会显示调整大小为我想要的图像。我已经把方法添加到MY_Loader,这里是代码。

function show_image($image, $width, $height) 
    $this->helper('file');
    $image_content = read_file($image);

    //resize image
    $image = imagecreatefromjpeg($image);
    $thumbImage = imagecreatetruecolor(50, 50);
    imagecopyresized($thumbImage, $image, 0, 0, 0, 0, 50, 50, $width, $height);
    imagejpeg($thumbImage,"",85);
    imagedestroy($image);
    imagedestroy($thumbImage);

    header('Content-Length: '.strlen($image_content)); // sends filesize header
    header('Content-Type: '. get_mime_by_extension($image)); // send mime-type header
    header('Content-Disposition: inline; filename="'.basename($image).'";'); // sends filename header
    exit($image_content); // reads and outputs the file onto the output buffer

从这段代码中,我收到了很多错误,包括标题错误。我做错了什么?

错误:(如果有用)

Message: imagejpeg(): Filename cannot be empty

Message: Cannot modify header information - headers already sent by (output started at /Volumes/www/vhosts/ci/system/core/Exceptions.php:185)

Message: strrchr() expects parameter 1 to be string, resource given

Message: Cannot modify header information - headers already sent by (output started at /Volumes/www/vhosts/ci/system/core/Exceptions.php:185)

Message: basename() expects parameter 1 to be string, resource given

Message: Cannot modify header information - headers already sent by (output started at /Volumes/www/vhosts/ci/system/core/Exceptions.php:185)

【问题讨论】:

您好!你能把错误信息贴在这里吗?问题可能是previousli发送的标头等... php代码之前的html代码..等... 没有加载 html 我只是从控制器调用它进行测试。 【参考方案1】:

好吧...所以... 第一件事是,你不想保存图像,只是显示 所以你应该使用只有一个参数的 imagejpeg。

   function show_image($image, $width, $height) 
        //$this->helper('file');                   why need this?
        //$image_content = read_file($image);      We does not want to use this as output.

        //resize image           
        $image = imagecreatefromjpeg($image);
        $thumbImage = imagecreatetruecolor(50, 50);
        imagecopyresized($thumbImage, $image, 0, 0, 0, 0, 50, 50, $width, $height);
        imagedestroy($image);
        //imagedestroy($thumbImage); do not destroy before display :)
        ob_end_clean();  // clean the output buffer ... if turned on.
        header('Content-Type: image/jpeg');  
        imagejpeg($thumbImage); //you does not want to save.. just display
        imagedestroy($thumbImage); //but not needed, cause the script exit in next line and free the used memory
        exit;
  

第一轮我推荐这个改变。请写信给我,错误会发生什么变化...... 并推荐阅读:http://php.net/manual/en/function.imagecopyresized.php

还有这个:

       Message: Cannot modify header information - headers already sent by (output started at /Volumes/www/vhosts/ci/system/core/Exceptions.php:185)

说我的异常 php 有问题... 请检查,是文件开头的 BOM 字符...还是空格、.. 之后或 php 标记之前的换行符.. 某些代码编辑器将这些 irritatign 字符放入 php 代码中...

应该像这样检查任何其他文件(出现此错误消息)。 有时在 php 标记之前会留下一些字符......如果在 web 服务读取文件时关闭了输出缓冲,则使用默认标题立即发送到输出。 (最近的 html/文本标题)。 (如果已经发送了其他标头,则无法发送某些标头。例如,如果发送了html/text,则无法发送image/jpeg)

如果你不想用这个来工作。我不知道你的系统是什么样子的。 我假设 index.php 是您的引导程序,请更改它。

   <?php
       ob_start();
       .... 
       ob_end_flush();
   ?>

但更好的解决方案是检查您的 php 代码,并删除 php 标记前后的行/字符。

【讨论】:

我得到的错误是 Message: imagejpeg(): 26 is not a valid Image resource when I turn off header('');因为标题说由于错误而无法加载图像。 imagedestroy($thumbImage); ups,我忘了这个。在将其发送到输出之前不要破坏。我更改了评论中的代码。 谢谢你!它有效,没有看到。我还找到了一个 codeigniter 库matmoo.com/digital-dribble/codeigniter/image_moo 是的,有时最好搜索一个好工具,而不是写同样的东西。但是对于学习来说,这是一件好事,我们再次编写代码。当我们使用工具时,我们知道里面可以有什么。或者如果工具不能正常工作,我们可以修复它。

以上是关于调整图像大小并显示而不保存的主要内容,如果未能解决你的问题,请参考以下文章

调整画布图像大小而不使其模糊

php 魔术师调整大小 - 显示图像而不是保存到文件夹

php - 调整大小并保存图像? [复制]

在 PowerShell 中调整字节数组图像的大小

nodejs从远程服务器调整大小并保存图像

使用 PHP GD 调整图像大小并保存图像。这段代码有啥问题?