Jump to content

Warning: Cannot modify header information - headers already sent by...


Recommended Posts

Hi, I am using the xamp installation. My GD library is enabled. But when i run this code in the GD tutorial, I encountered this problem with a warning like this:Warning: Cannot modify header information - headers already sent by...

 

My code is as follows:<?php

        header ("Content-type: image/png");

        $img_handle = ImageCreate (230, 20) or die ("Cannot Create image");

        $back_color = ImageColorAllocate ($img_handle, 0, 10, 10);

        $txt_color = ImageColorAllocate ($img_handle, 233, 114, 191);

        ImageString ($img_handle, 31, 5, 5,  "My first Program with GD", $txt_color);

        ImagePng ($img_handle);

    ?>

 

Can somebody tell me what is wrong?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.