예제 #1
0
 private function createBlankImage($iWidth, $iHeight)
 {
     // blank transparent image
     $image = new GDImage($iWidth, $iHeight);
     $image->fill(0, 0, $image->getColorTransparent());
     return $image;
 }