Skip to content

Instantly share code, notes, and snippets.

@nciske
Created February 21, 2013 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nciske/5008606 to your computer and use it in GitHub Desktop.
Save nciske/5008606 to your computer and use it in GitHub Desktop.
Check for free type in PHP
<?php
$gdinfo = gd_info();
if( $gdinfo['FreeType Support'] ){
echo 'FreeType Support Enabled';
}else{
echo 'No FreeType Support';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment