0

我有一个外部 PHP 文件,可以调整图像大小(image.php)。每次使用“图像”标签时,我都需要调用它,以便它可以填写“src”。我将如何告诉 HTML 文件使用外部 PHP 页面,以及在处理“图像”“src”标签时如何让它使用它?

这就是我用来尝试显示图像的东西。

我需要在我的“头部”部分包含一些内容吗?

谢谢您的帮助!

<li><a href= "/intPics//1.jpg"> <img src="<?php loadImage('/intPics//1.jpg', 300,300) ?>"<div>1.jpg</div></a></li>

这是PHP文件

<?php



   function imageResizer($url, $width, $height) {



                header('Content-type: image/jpeg');



                list($width_orig, $height_orig) = getimagesize($url);



                $ratio_orig = $width_orig/$height_orig;



                if ($width/$height > $ratio_orig) {

                  $width = $height*$ratio_orig;

                } else {

                  $height = $width/$ratio_orig;

                }



                // This resamples the image

                $image_p = imagecreatetruecolor($width, $height);

                $image = imagecreatefromjpeg($url);

                imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height,     $width_orig, $height_orig);



                // Output the image

                imagejpeg($image_p, null, 100);



        }



        /    /works with both POST and GET

        $method = $_SERVER['REQUEST_METHOD'];



        if ($method == 'GET') {



                imageResize($_GET['url'], $_GET['w'], $_GET['h']);



         } elseif ($method == 'POST') {



            imageResize($_POST['url'], $_POST['w'], $_POST['h']);

         }



      // makes the process simpler

        function loadImage($url, $width, $height){

         echo 'image.php?url=', urlencode($url) ,

         '&w=',$width,

         '&h=',$height;

        }



?>
4

2 回答 2

2

我不知道我是否正确理解了您的问题,但我会尝试回答:

您可以直接从src图像标签中调用 php 脚本

<img src="image.php" />

在您的 php 文件中,您可以将内容类型设置为图像格式

<?php header('Content-Type:image/jpeg'); ?>

这样 php 脚本会返回一个图像。您甚至可以传递参数,例如传递image.php?width=200&height=100给 php 脚本。

于 2012-12-17T21:56:58.360 回答
0

我不知道你的 php 文件中有什么,但是

<?php require_once('path/image.php') ?>

应该导入它,然后您只需使用函数并通过 php 脚本填充 src 吗?

编辑:如果您向我提供更多信息,例如代码,我可以帮助您了解有关详细信息的更多问题。

于 2012-12-17T21:54:29.803 回答