downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

imagepstext> <imagepsloadfont
[edit] Last updated: Fri, 24 May 2013

view this page in

imagepsslantfont

(PHP 4, PHP 5)

imagepsslantfontInclinar una fuente

Descripción

bool imagepsslantfont ( resource $font_index , float $slant )

Inclina una fuente dada.

Parámetros

font_index

Un recurso de fuente, devuelto por imagepsloadfont().

slant

El nivel de inclinación.

Valores devueltos

Devuelve TRUE en caso de éxito o FALSE en caso de error.

Ejemplos

Ejemplo #1 Ejemplo de imagepsslantfont()

<?php
// Cargar un archivo de fuente .pfb
$fuente imagepsloadfont('./px3l.pfb');

// Inclinar la fuente por 22.5
imagepsslantfont($fuente22.5);

// Hacer cualesquiera operaciones con la fuente aquí

// Liberar la fuente de la memoria
imagepsfreefont($fuente);
?>

Notas

Nota: Esta función sólo está disponible si PHP fue compilado usando --with-t1lib[=DIR] .



add a note add a note User Contributed Notes imagepsslantfont - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites