我在 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);
但是找不到文件。