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

search for in the

imagepsloadfont> <imagepsextendfont
[edit] Last updated: Fri, 17 May 2013

view this page in

imagepsfreefont

(PHP 4, PHP 5)

imagepsfreefontLiberar la memoria usada por una fuente PostScript Type 1

Descripción

bool imagepsfreefont ( resource $font_index )

imagepsfreefont() libera la memoria usada por una fuente PostScript Type 1.

Parámetros

font_index

Un recurso de fuente, devuelto por imagepsloadfont().

Valores devueltos

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

Ejemplos

Ejemplo #1 Ejemplo de imagepsfreefont()

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

// 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] .

Ver también



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

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