2013-05-20 158 views
3

我有一個上傳表單,它工作的很好,照片正在上傳,但問題是,sfThumbnail插件似乎不工作。沒有縮略圖正在生成。這裏是我的代碼:Symfony 1.4 sf縮略圖不生成縮略圖

 // /lib/form/UploadForm.class.php 

     public function configure() 
     { 
     $this->setWidget('photo', new sfWidgetFormInputFileEditable(
     array(
     'edit_mode' => !$this->isNew(), 
     'with_delete' => false, 
     'file_src' => '', 
     ) 
    )); 

     $this->widgetSchema->setNameFormat('image[%s]'); 

     $this->setValidator('photo', new sfValidatorFile(
     array(
     'max_size' => 5000000, 
     'mime_types' => 'web_images', 
     'path' => '/images/', 
     'required' => true, 
     'validated_file_class' => 'sfMyValidatedFileCustom' 
      ) 
     )); 

而這裏的驗證器類

class sfMyValidatedFileCustom extends sfValidatedFile{ 

    public function save($file = null, $fileMode = 0666, $create = true, $dirMode = 0777) 
    { 
     $saved = parent::save($file, $fileMode, $create, $dirMode); 
     $thumbnail = new sfThumbnail(150, 150, true, true, 75, ''); 
     $location = strpos($this->savedName,'/image/'); 
     $filename = substr($this->savedName, $location+15); 
     // Manually point to the file then load it to the sfThumbnail plugin 
     $uploadDir = sfConfig::get('sf_root_dir').'/image/'; 
     $thumbnail->loadFile($uploadDir.$filename); 
     $thumbnail->save($uploadDir.'thumb/'.$filename,'image/jpeg'); 
     return $saved; 
    } 

而且我的行動代碼:

public function executeUpload(sfWebRequest $request) 
    { 
    $this->form = new UploadForm(); 
    if ($request->isMethod('post')) 
    { 
     $this->form->bind(
     $request->getParameter($this->form->getName()), 
     $request->getFiles($this->form->getName()) 
    ); 
     if ($this->form->isValid()) 
     { 
      $this->form->save(); 
      return $this->redirect('photo/success'); 
     } 
    } 
    } 

我不是100%肯定,如果我做正確,但這是我從文檔和其他例子中看到的。

回答

3

您不能使用$this->savedName,因爲它是來自sfValidatedFile的受保護值。您應該改用$this->getSavedName()。你爲什麼要提取的文件名的時候,終於,你loadFile重新添加/image/到它時,它負載

$location = strpos($this->savedName,'/image/'); 
$filename = substr($this->savedName, $location+15); 

我不明白這個部分?

無論如何,我對你的班級做了一些改變。我沒有測試它,但我認爲它應該工作。

class sfMyValidatedFileCustom extends sfValidatedFile 
{ 
    public function save($file = null, $fileMode = 0666, $create = true, $dirMode = 0777) 
    { 
    $saved = parent::save($file, $fileMode, $create, $dirMode); 
    $filename = str_replace($this->getPath().DIRECTORY_SEPARATOR, '', $saved); 

    // Manually point to the file then load it to the sfThumbnail plugin 
    $uploadDir = $this->getPath().DIRECTORY_SEPARATOR; 

    $thumbnail = new sfThumbnail(150, 150, true, true, 75, ''); 
    $thumbnail->loadFile($uploadDir.$saved); 
    $thumbnail->save($uploadDir.'thumb/'.$filename, 'image/jpeg'); 

    return $saved; 
    } 
+0

非常感謝j0k!你是一個拯救生命的人!感謝您的詳細解釋。我一定會記住這一點。 – kevin