Jump to content

[Krydos] new tommy: PHP 5.6 and GD library: Problem "no Text in Images"


dl5ark1

Recommended Posts

I am experiencing an issue with generating images using a PHP script from the MyBlitzortung project (https://github.com/tobiasv/MyBlitzortung/tree/master) after moving my website from the old tommy2 server to the new tommy server. The script uses the GD library to render images with text, but after the move, no text is displayed in the images.

To investigate, I ran two simple test scripts:

gd.php (https://dl5ark.heliohost.org/gd.php): This test creates a blank image with a black background and attempts to display text using a specific TTF font, but only a white rectangle is shown without the text.
gd1.php (https://dl5ark.heliohost.org/gd1.php): Similarly, this script also fails to display the text.
The PHP script in question (functions_image.inc.php) relies on the GD library with FreeType support to render the text, and the path to the TTF font seems to be correctly configured. The issue persists even though:
- FreeType support is enabled on the server.
- The font files are present and accessible with appropriate permissions.

I kindly request your help to:
1. Verify if the GD library with FreeType is functioning correctly on the new server.
2. Check for any potential issues with the PHP configuration (e.g., paths, library versions, or limitations) that might prevent the text rendering from working properly.

I appreciate your assistance in resolving this issue, as it affects the proper functioning of image generation on the website.

Wolstech has also tested it and confirms the problem with PHP 6.5 and the GD library (GD is broken): https://helionet.org/index/topic/62191-tommy-upgrade/?do=findComment&comment=279291 .

Thank you for your help, best regards!

Link to comment
Share on other sites

  • wolstech changed the title to [Krydos] new tommy: PHP 5.6 and GD library: Problem "no Text in Images"

Yep, I can confirm that GD imagettftext() function on Tommy's PHP 5.6 is broken, and I can't get it to even produce an error. I suspect it is Plesk's fault because we just use the package plesk-php56-gd.rpm and they probably made some mistake compiling it. Some options:

  1. We can report it to Plesk and see if they will fix it.
  2. We could uninstall the Plesk package, and compile GD ourself from source, but that seems like too much work and may break other things.
  3. We could use a version of PHP where GD actually works, such as 7.4, but that may not be an option if too much of the rest of the code requires 5.6.
  4. We could move your website to Lily where I think PHP 5.6 has GD and it actually works.
  5. We could move you to a VPS which start at $4 per month https://heliohost.org/vps/
  6. You could use Image Magick instead of GD. Example code below:
<?php

// font size and colors
$fontsize = 53;
$width = 800;
$height = 200;
$bg = "#fbfbfb";
$fg = "#000000";
$text = "Hallo, Welt!";

// initialize the imagick stuff
$image = new Imagick();
$draw = new ImagickDraw();
$pixel = new ImagickPixel($bg);

// load font
$draw->setFont("./DejaVuSansMono-Oblique.ttf");
$draw->setFontSize($fontsize);
$draw->setFillColor($fg);

// make background
$image->newimage($width, $height, $pixel);

// add text to background
$image->annotateImage($draw, 100, 150, 0, $text);
$image->setImageFormat("png");

header("Content-Type: image/png");
echo $image;

Example using the above Image Magick code on PHP 5.6:

im.php

Example using your GD code on PHP 7.4:

gd1.php

 

Link to comment
Share on other sites

48 minutes ago, Krydos said:

Yep, I can confirm that GD imagettftext() function on Tommy's PHP 5.6 is broken, and I can't get it to even produce an error. I suspect it is Plesk's fault because we just use the package plesk-php56-gd.rpm and they probably made some mistake compiling it. Some options:

  1. We can report it to Plesk and see if they will fix it.
  2. We could uninstall the Plesk package, and compile GD ourself from source, but that seems like too much work and may break other things.
  3. We could use a version of PHP where GD actually works, such as 7.4, but that may not be an option if too much of the rest of the code requires 5.6.
  4. We could move your website to Lily where I think PHP 5.6 has GD and it actually works.
  5. We could move you to a VPS which start at $4 per month https://heliohost.org/vps/
  6. You could use Image Magick instead of GD. Example code below:
<?php

// font size and colors
$fontsize = 53;
$width = 800;
$height = 200;
$bg = "#fbfbfb";
$fg = "#000000";
$text = "Hallo, Welt!";

// initialize the imagick stuff
$image = new Imagick();
$draw = new ImagickDraw();
$pixel = new ImagickPixel($bg);

// load font
$draw->setFont("./DejaVuSansMono-Oblique.ttf");
$draw->setFontSize($fontsize);
$draw->setFillColor($fg);

// make background
$image->newimage($width, $height, $pixel);

// add text to background
$image->annotateImage($draw, 100, 150, 0, $text);
$image->setImageFormat("png");

header("Content-Type: image/png");
echo $image;

Example using the above Image Magick code on PHP 5.6:

im.php

Example using your GD code on PHP 7.4:

gd1.php

 

1. We can report it to Plesk and see if they will fix it.
This seems like the best idea for now, as others might be affected by the problem as well. If Plesk acknowledges the problem and fixes it, it will benefit everyone.
2. We could uninstall the Plesk package, and compile GD ourself from source, but that seems like too much work and may break other things.
We should wait with that. Depending on how 1. turns out.
3. We could use a version of PHP where GD actually works, such as 7.4, but that may not be an option if too much of the rest of the code requires 5.6.
This code would run with 7.4 if necessary, but other code on my site still requires 5.6. If you could choose PHP per application instead of for the whole homepage that would be an option, unfortunately not.
4. We could move your website to Lily where I think PHP 5.6 has GD and it actually works.
Hm, I would wait and see 1.
5. We could move you to a VPS which start at $4 per month https://heliohost.org/vps/
That's “a little” too expensive for me.
6. You could use Image Magick instead of GD. Example code below:
Since the Blitzortung project is not my project, the outcome of rewriting possibly many files seems too uncertain to me.
 

Link to comment
Share on other sites

14 minutes ago, dl5ark1 said:

If you could choose PHP per application instead of for the whole homepage that would be an option, unfortunately not.

You can have up to 10 domains or subdomains on your account, and each one can have a different PHP version. For instance you could do blitz.dl5ark.heliohost.org, anotherproject.dl5ark.heliohost.org, etc

Link to comment
Share on other sites

21 minutes ago, Krydos said:

You can have up to 10 domains or subdomains on your account, and each one can have a different PHP version. For instance you could do blitz.dl5ark.heliohost.org, anotherproject.dl5ark.heliohost.org, etc

I wasn't aware of that. I can probably look it up in the manual to set it up correctly. I can give it a try over the next week.

Reporting the problem to Plesk is still a good idea.

Link to comment
Share on other sites

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.   Paste as plain text instead

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