(PHP 4, PHP 5)
imagepsslantfont — Slant a font
Esta função foi REMOVIDA desde o PHP 7.0.0.
$font_index
, float $slant
) : boolSlant a given font.
Retorna TRUE
em caso de sucesso ou FALSE
em caso de falha.
Versão | Descrição |
---|---|
7.0.0 | T1Lib support was removed from PHP, thus this function was removed. |
Exemplo #1 imagepsslantfont() example
<?php
// Load a .pfb font file
$font = imagepsloadfont('./px3l.pfb');
// Slant the font by 22.5
imagepsslantfont($font, 22.5);
// Do any operations with the font here
// Free the font from memory
imagepsfreefont($font);
?>
Nota: Esta função somente está disponível se o PHP estiver compilado com --with-t1lib[=DIR].