Codeigniter PHPPublished June 20, 2011 at 10:39 PM No Comments
We’ve just lunched this new site: http://www.bcropen.ro . Build with latest PHP technology, this site presents the Romanian Open Tenis for Ladies. Take a look and give me your feedback.
CodeigniterPublished June 16, 2011 at 9:37 PM No Comments
If you want to maintain transparency of your PNG images when you use Codeigniter image library, you need to make some tweak on Codeigniter image library: 1. file path: system/libraries/image_lib.php 2. find: $dst_img = $create($this->width, $this->height); 3. insert after: $transparencyIndex = imagecolortransparent($src_img); $transparencyColor = array(‘red’ => 255, ‘green’ => 255, ‘blue’ => 255); if ($transparencyIndex
read more..