Google Image Charts API - 它是如何工作的?

发布于 2024-11-09 15:13:49 字数 498 浏览 0 评论 0原文

我希望创建一些与 Google Image Charts API 大致相似的东西,通过它我可以构造一个查询字符串,并返回一个图像。

例如:

http://chart.apis.google.com/chart?cht=p3&chs=550x250&chd=t:73,13,10,3,1&chco=80C65A,224499,FF0000& chl=巧克力|泡芙+糕点|饼干|松饼|冰淇淋

我想知道,实现这一目标的最佳方法是什么? 有人知道 Google Image Charts API 如何“在幕后”工作吗?

是否有任何库可以提供动态图像生成?

I'm looking to create something loosely similar to the Google Image Charts API, where by I can construct a query string, and an image is returned.

For example:

http://chart.apis.google.com/chart?cht=p3&chs=550x250&chd=t:73,13,10,3,1&chco=80C65A,224499,FF0000&chl=Chocolate|Puff+Pastry|Cookies|Muffffffins|Gelato

I was wondering, what would the best way to achieve this be?
Does anybody have any info on how the Google Image Charts API works "under the hood" ?

Are there any libraries that provide dynamic image generation already?

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

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

发布评论

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

评论(1

扮仙女 2024-11-16 15:13:49

您可以使用服务器端脚本读取查询字符串参数、生成图像并使用图像 MIME 类型输出内容。

如果您使用 PHP,则可以使用像 GD 这样的图像库来执行此操作。更多信息请参见:https://www.php.net/manual/en/书.image.php

You can use a server side script to read the query string parameters, generate the image and output the content using the image MIME type.

If you are on PHP, you can use an image library like GD to do this. More information here: https://www.php.net/manual/en/book.image.php

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