When iam creating thumbnail in codeigniter i get an image with black background color.

Why was it happen? This is the code in controller:

$this->load->library('image_lib');
                $config['image_library'] = 'gd2';
                $config['source_image'] = $file ;
                $config['maintain_ratio'] = FALSE;
                $this->image_lib->initialize($config);
                $this->md_image->resize_image('./images/logo_images/'.$filename,380,80,'./images/logo_images/thumbs/'.$filename);
link|improve this question

40% accept rate
1  
Read this codeigniter.com/forums/viewthread/62955 – Cheery Feb 6 at 4:34
feedback

1 Answer

It is a PHP and GD2 problem, and not taken into account in the Image Lib in CodeIgniter.

Have a look here in the PHP manual to be able to keep transparency on resize :

http://www.php.net/manual/en/function.imagecolortransparent.php

Stéph

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.