Jump to content

Recommended Posts

Never worked with GD before but I'm trying to use it for simple instances of dynamic buttons. I've just tried to cut/paste simple examples I've found on the internet on a test page but my browser won't render the image. My host is 1&1 Linux and running a check_info.php on one of my domains shows that GD is installed and enabled. Anyway, my browser returns this when I try the code below: �PNG IHDR�����������������PLTE� �r�`�L����IDAT(��бA�MhF�!�a�+(�W��&�;�x��Z���i'J�D�R�+�0w��`�����f�Sc�CYe�G�E����*T,(�����Pe�|&H�;?&���ֳ�54I�%����ב[��!�i�)1kg$;�P E��o���,{��z���:`����̔���,�fS�8���7Ȑ��E��E��,�N��@�4&��g��G�2�'��D?�<_F����IEND�B`�

 

 <?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);
    ?> 

Link to comment
https://forums.phpfreaks.com/topic/194375-gd-not-working/
Share on other sites

Yes, I'm using Firefox and .png extensions display just fine.

 

After initially displaying the image following your suggestion - I can no longer get it to load. I have changed it between jpg, gif, and png, and now it won't reload the script using .png.

 

I'm rather confused.

Link to comment
https://forums.phpfreaks.com/topic/194375-gd-not-working/#findComment-1022498
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.