Example #1
0
 public function getControlImage($opts)
 {
     $image = parent::getControlImage($opts);
     //image preview with applied opts
     //$image = Image::fromFile($this->getPreviewPath());
     $button = Image::fromFile(dirname(__FILE__) . "/VideoFile-control.png");
     $button->resize(0.8 * $image->width, 0.9 * $image->height);
     $image->place($button, "50%", "50%");
     return $image;
 }