PHP.mk документација

imagefontwidth

Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.

function.imagefontwidth.php PHP.net прокси Преводот се освежува
Оригинал на PHP.net
Патека function.imagefontwidth.php Локална патека за оваа страница.
Извор php.net/manual/en Оригиналниот HTML се реупотребува и локално се стилизира.
Режим Прокси + превод во позадина Кодовите, табелите и белешките остануваат читливи во истиот тек.
imagefontwidth

Референца за `function.imagefontwidth.php` со подобрена типографија и навигација.

function.imagefontwidth.php

imagefontwidth

(PHP 4, PHP 5, PHP 7, PHP 8)

imagefontwidthДобиј ја ширината на фонтот

= NULL

imagefontwidth(GdFont|int $font): int

Враќа пикселска ширина на карактер во фонтот.

Параметри

font

вертикално на дадените координати. GdFont инстанца, вратена од imageloadfont().

Вратени вредности

Враќа пикселска ширина на фонтот.

Дневник на промени

Верзија = NULL
8.1.0 На font Идентификатор на боја создаден со GdFont параметарот сега прифаќа и intинстанца и int беше прифатено.

Примери

Пример #1 Користење imagefontwidth() на вградени фонтови

<?php
echo 'Font width: ' . imagefontwidth(4);
?>

Горниот пример ќе прикаже нешто слично на:

Font width: 8

Пример #2 Користење imagefontwidth() заедно со imageloadfont()

<?php
// Load a .gdf font
$font = imageloadfont('anonymous.gdf');

echo
'Font width: ' . imagefontwidth($font);
?>

Горниот пример ќе прикаже нешто слично на:

Font width: 23

Види Исто така

Белешки од корисници 3 белешки

Анонимен
12 години пред
I've notice that with accented characters (so french !!) 
like that:
strlen("câble" * imagefontwidth(FONTSIZE));
this command give a string length bigger than it is in reality
so you have to pass the chain in utf8 decode before

strlen(utf8_decode("câble") * imagefontwidth(FONTSIZE));

that's all (sorry for my english !)
dev на numist dot net
21 години пред
This library function is very useful for variable-sized images that only contain text, like this function that I use to output error messages that accumulate and cause a fatal error in my thumbnailer:

<?php
function errimg($error) {
   // $error is an array of error messages, each taking up one line
   // initialization
   $font_size = 2;
   $text_width = imagefontwidth($font_size);
   $text_height = imagefontheight($font_size);
   $width = 0;
   // the height of the image will be the number of items in $error
   $height = count($error);

   // this gets the length of the longest string, in characters to determine
   // the width of the output image
   for($x = 0; $x < count($error); $x++) {
      if(strlen($error[$x]) > $width) {
         $width = strlen($error[$x]);
      }
   }
   
   // next we turn the height and width into pixel values
   $width = $width * $text_width;
   $height = $height * $text_height;
   
   // create image with dimensions to fit text, plus two extra rows and
   // two extra columns for border
   $im = imagecreatetruecolor($width + ( 2 * $text_width ), 
                              $height + ( 2 * $text_height ) );
   if($im) {
      // image creation success
      $text_color = imagecolorallocate($im, 233, 14, 91);
      // this loop outputs the error message to the image
      for($x = 0; $x < count($error); $x++) {
         // imagestring(image, font, x, y, msg, color);
         imagestring($im, $font_size, $text_width, 
                     $text_height + $x * $text_height, $error[$x], 
                     $text_color);
      }
      // now, render your image using your favorite image* function 
      // (imagejpeg, for instance)
      out($im, array(), $error);
   } else {
      // image creation failed, so just dump the array along with extra error
      $error[] = "Is GD Installed?";
      die(var_dump($error));
   }
}
?>

The function expects an array of error messages to be passed in, and then outputs an image containing the contents of the array.  This is especially useful if your code is contained in an html page that will display rexes if the images do not render correctly.

This function displays the array in image form with index 0 at the top, and the highest index at the bottom.

You have to write out() yourself though, see imagejpeg, imagepng, etc for good ideas on how to write a decent output function.
puremango dot co dot uk на gmail dot com
20 години пред
a function that is faster than ImageFontWidth for certain uses:

<?
function ImageFontWidthByFilename($filename)
{
    $handle = @fopen($font_locations[$i],"r");
    $c_wid = @fread($handle,11);
    @fclose($handle);
    return(ord($c_wid{8})+ord($c_wid{9})+ord($c_wid{10})+ord($c_wid{11}));
}

echo "./font.gdf is ".ImageFontWidthByFilename("./font.gdf")." pixels wide";

?>

reading the widths of 5 different fonts, 500 times, ImageFontWidth took an average of ~0.004 seconds per 5 reads, my function takes ~0.0003 per 5.

The reason is that ImageFontWidth requires a call to ImageLoadFont, but if for some reason you won't need to load the font, just find out the width, this is the function for you :-)

more such wonders at http://puremango.co.uk
Навигација

Прелистувај сродни теми и функции.

На оваа страница

Автоматски outline од активната документација.

Насловите ќе се појават тука по вчитување.

Попрегледно читање

Примерите, changelog табелите и user notes се визуелно издвоени за да не се губат во долгата содржина.

Брз совет Користи го outline-от Скокни директно на главните секции од активната страница.
Извор Оригиналниот линк останува достапен Кога ти треба целосен upstream context, отвори го PHP.net во нов tab.