示例#1
0
 public function getColorImage()
 {
     $color = $_POST['color'];
     $this->load->helper('SimpleImage');
     $finalImage = new abeautifulsite\SimpleImage();
     $finalImage->create(100, 100, $color);
     echo $finalImage->output_base64('png');
 }