PHP 8.5.0 Alpha 4 available for testing

Voting

: zero plus eight?
(Example: nine)

The Note You're Voting On

Mathew Oransky
15 years ago
An example of how to get the fonts available.
<?php
$image
= new Gmagick();
$fonts = $image->queryfonts();
foreach(
$fonts as $font){
echo
$font."\n";
}
?>

<< Back to user notes page

To Top