0

我在 Surgery/PatientBundle/Controller/RegistrationPatientBundleController 和 Surgery/PatientBundle/Resources/public/images/test.jpg 中有控制器,我有一张图片。该图像的路径如何?我在我的控制器中尝试了这段代码

public testAction(){

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

但是找不到文件。

4

1 回答 1

0

尝试 :

$image => imagecreatefromjpeg(__DIR__.'/../Resources/public/images/test.jpg');
于 2013-02-14T13:56:19.097 回答