使用超级/子脚本生成PHP图像

时间:2011-07-29 21:09:12

标签: php image

我正在寻找动态生成PHP图像。到目前为止,我正在使用这个脚本并且运行良好:

<?php

header("Content-type: image/png");
$string = $_GET['text'];
$im     = imagecreatefrompng("images/button1.png");
$orange = imagecolorallocate($im, 220, 210, 60);
$px     = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 9, $string, $orange);
imagepng($im);
imagedestroy($im);

?>

但是我想在字符串输入中使用super / subscripts。我已经尝试使用的HTML等效,但无济于事。

任何指针?

1 个答案:

答案 0 :(得分:0)

以较小的字体大小和相对于其他文本的较高/较低的垂直位置书写。这就是所有超级/子脚本都是...... imagestring的不同参数。没有必要使用单独的方法从2D绘图库中的其他文本中编写该文本。