Jump to content
View in the app

A better way to browse. Learn more.

The Uniform Server Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Problem creating image with text

Featured Replies

The following script works with Uniserver3_2a, but fails with Uniserver3_5

Error messages says that the font file is missing.

Where can I get a font file and what is the location I have to put it?

 

Thanks,

Han

 

++++++++++++++++++++++++++++

function vertText($text, $id)

{

// Create the image

$im = imagecreatetruecolor(20, 80);

 

$background = imagecolorallocate($im, 253, 208, 23);

$black = imagecolorallocate($im, 0, 0, 0);

imagefilledrectangle($im, 0, 0, 19, 79, $background);

 

$font = 'arial.ttf';

 

// Add the text

imagettftext($im, 12, 270, 5, 5, $black, $font, $text);

 

// Create the image with vertical text

imagepng($im, "$id.png");

imagedestroy($im);

}

You need to supply a path for the font.

 

If using this : $font = 'arial.ttf'; copy the font to the folder where your script is located.

 

Alternatively change the line to $font = 'C:\WINDOWS\Fonts\arial.ttf';

 

All the best

Ric :)

  • Author

Putting a copy of the arial.ttf from c:\windows\fonts in the scripts folder has the effect of not showing an error message. But the created image contains no text.

Any explanation why uniserver3_2a does not need a font file in the script folder?

I searched php.ini for a font directory, I searched the uniserver3_2a directory tree for font files, but I found nothing. Where is 3_2a getting the font definition? Is 3_5 doing things differently?

Thanks,

Han

As RIC said, the only thing you need is

$font = 'C:\WINDOWS\Fonts\arial.ttf';

and copying the font to your script is not need.

 

works fine. tested with the fresh uniformserver 3.5.

 

ps: if you have the png file already please delete it first and test again.

  • 10 months later...

Hi there,

 

The problem is that the var $FontName (or $this->FontName) of the pChart-class is initiated as NULL. Unless you change that value by using setFontProperties, this NULL is used as the path to that ttf-file.

 

So please set this by using for example:

$mychart->setFontProperties("Fonts/pf_arma_five.ttf",12).

 

It worked for me

 

O I'm sorry, I tought that this was about pChart, because it also uses imageftbbox. I just couldn't delete this answer. So don't mind.

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

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.