有没有免费的 php 代码可以将文本转换成漂亮的徽标?

发布于 2024-10-11 18:15:22 字数 95 浏览 0 评论 0 原文

我想要一个 php 函数,它可以将文本作为输入,并用该文本生成一个漂亮的徽标(图像)。如果标志的风格(颜色、阴影、形状、大小等)具有灵活性,那就太好了。有人可以推荐一些东西吗?

I would like to have a php function that can take text as the input and generate a nice logo (image) with that text. It would be nice to have a flexibility in the style of the logo (color, shadow, shape, size and so on). Can anybody recommend something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

离线来电— 2024-10-18 18:15:22

我只知道 ASCII 生成器,但也许某个地方有 PHP 版本。

I just know the ASCII Generator, but maybe theres a PHP version somewhere.

娜些时光,永不杰束 2024-10-18 18:15:22

我的建议是使用 CSS+HTML 来设置文本样式,然后使用 wkHTMLToImage 生成图像,这是 wkHTMLtoPDF 项目的一部分 - http://code.google.com/p/wkhtmltopdf/

My suggestion would be to use CSS+HTML to style the text and then generate an image from that using wkHTMLToImage, which is part of the wkHTMLtoPDF project - http://code.google.com/p/wkhtmltopdf/

我们的影子 2024-10-18 18:15:22

你想要这样的东西吗?http://trevorrudolph.com/image.php 这里是代码

<?php
$my_img = imagecreate( 400, 200 );
$background = imagecolorallocate( $my_img, 0, 0, 255 );
$text_colour = imagecolorallocate( $my_img, 255, 255, 0 );
$line_colour = imagecolorallocate( $my_img, 128, 255, 0 );
imagestring( $my_img, 4, 30, 25, "http://trevorrudolph.com",
  $text_colour );
imagesetthickness ( $my_img, 5 );
imageline( $my_img, 30, 45, 165, 45, $line_colour );

header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $line_color );
imagecolordeallocate( $text_color );
imagecolordeallocate( $background );
imagedestroy( $my_img );
?>

you want something like this?, http://trevorrudolph.com/image.php heres the code

<?php
$my_img = imagecreate( 400, 200 );
$background = imagecolorallocate( $my_img, 0, 0, 255 );
$text_colour = imagecolorallocate( $my_img, 255, 255, 0 );
$line_colour = imagecolorallocate( $my_img, 128, 255, 0 );
imagestring( $my_img, 4, 30, 25, "http://trevorrudolph.com",
  $text_colour );
imagesetthickness ( $my_img, 5 );
imageline( $my_img, 30, 45, 165, 45, $line_colour );

header( "Content-type: image/png" );
imagepng( $my_img );
imagecolordeallocate( $line_color );
imagecolordeallocate( $text_color );
imagecolordeallocate( $background );
imagedestroy( $my_img );
?>
铜锣湾横着走 2024-10-18 18:15:22

您可能需要另一个 php 代码来生成它。

以下是如何将文本转换为图像< /a>

You may need another php code for generating that.

Here is how to Convert Text To Image

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文