Una pregunta que fuente estás usando? Porque con arial me funciona perfectamente.
Edit: Acabo de leer que verdana... Prueba con las siguientes:
- Arial (Me funcionó con esta arial.ttf) - Times New Roman (Me funciona perfectamente con esta times.ttf) - Century Gothic (Me funcionó tambien GOTHIC.ttf) - Tahoma (Acabo de probar y no funciona lo convierte en cuadros) - Verdana (No tiene el corazón lo convierte en cuadros)
Prueba con otras fuentes a ver.
Mi ejemplo de prueba:
Código PHP:
Ver original<?php
// Set the content-type
header('Content-Type: image/png');
// Create the image
// Create some colors
// The text to draw
$text = '♥-♥';
// Replace path by your own font path
$font = 'arial.ttf';
// Add the text
// Using imagepng() results in clearer text compared with imagejpeg()
Saludos.