/**
  * Get width of this item
  *
  * @return int
  */
 public function getWidth()
 {
     if ($this->file) {
         $width = $this->file->getWidth();
         if ($width) {
             return $width;
         }
     }
     return $this->config()->insert_width;
 }