欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php在图片上写指定字体的文字

程序员文章站 2024-01-08 18:08:41
...
  1. header('Content-type: image/gif');
  2. $image = imagecreate( 400, 200 );
  3. $red = imagecolorallocate($image, 255,0,0);
  4. $blue = imagecolorallocate($image, 0,0,255 );
  5. $font = 'ARIALBD.TTF';
  6. imageTTFtext( $image, 50, 0, 20, 100, $blue, $font, 'outofmemory.cn' );
  7. imagegif($image);
  8. ?>
复制代码
上写, php

上一篇:

下一篇: