PHP GD库,Symfony中的图像路径

时间:2013-02-14 13:50:02

标签: php symfony gd

我在Surgery / PatientBundle / Constroller / RegistrationPatientBundleController和Surgery / PatientBundle / Resources / public / images / test.jpg中有控制器我有一个图像。这张图片的路径怎么样?我在我的控制器中尝试了这段代码

public testAction(){

     header ( 'Content-Type: image/jpeg' );
     $image = imagecreatefromjpeg("../Resources/public/images/test.jpg");
     imagejpeg($image);

但找不到文件。

1 个答案:

答案 0 :(得分:0)

尝试:

$image => imagecreatefromjpeg(__DIR__.'/../Resources/public/images/test.jpg');