How to make image's background transparency to 0?

Posted by pheromix on Stack Overflow See other posts from Stack Overflow or by pheromix
Published on 2012-09-18T09:24:35Z Indexed on 2012/09/18 9:37 UTC
Read the original article Hit count: 171

Filed under:
|
|
|
|

There are images displayed inside a HTML table in a PHP code :

enter image description here

The code of this table is :

for ($i = 0; $i < $data['list']['cnt']; $i++) {             
    $tabRows[$i][1]['width']    = "45%";
    $tabRows[$i][1]['align']    = "center";
    $tabRows[$i][1]['value']    = '<img src="'.HTTP_FIGURES.$data['list'][$i]['fig_image'].'" />';
}

As you can see the background of the images are seen and they make the page dirty. So I want to remove the background of each image. How to do that ?

© Stack Overflow or respective owner

Related posts about php

Related posts about html