Example #1
0
 public function toPNG()
 {
     if (Validator::isResource($this->imageResource)) {
         throw new RuntimeException();
     }
     imagepng($this->imageResource);
     imagedestroy($this->imageResource);
 }