使用 PHP 或 Javascript 旋转 png

发布于 2024-07-17 20:21:42 字数 154 浏览 6 评论 0原文

我正在尝试旋转基于数据库中的值(1-360 度)的 png,

但是,我将其与 google 地图 api 结合使用,并且如果我使用 "header('Content-type: image/ .png');" 我的地图不显示,仅显示图像。

有任何想法吗?

I'm trying to rotate a png that's based off a value in my database (1-360 degrees)

however, I'm using it in conjunction with the google mapping api and if I use "header('Content-type: image/png');" my map does not show and only the image.

Any ideas?

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

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

发布评论

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

评论(4

寂寞花火° 2024-07-24 20:21:42

有一个 jQuery 插件,用于使用 JavaScript 旋转图像。

There is a jQuery plug-in for rotating imaages with javascript.

盗心人 2024-07-24 20:21:42

来自 ImageMagic API 站点

PHP
MagickWand for PHP 是 ImageMagick MagickWand API 的本机 PHP 扩展。
IMagick 是一个本机 PHP 扩展,用于使用 ImageMagick API 创建和修改图像。 此处提供了该扩展的文档。
phMagick 是 ImageMagick 的包装类,将最常见的 Web 图像操作操作包装在易于使用的函数中,但允许通过向其命令行程序发出系统调用来完全访问 ImageMagick 的功能。

ImageMagick® 是一个用于创建、编辑和合成位图图像的软件套件。 它可以读取、转换和写入多种格式(超过 100 种)的图像,包括 DPX、EXR、GIF、JPEG、JPEG-2000、PDF、PhotoCD、PNG、Postscript、SVG 和 TIFF。 使用 ImageMagick 平移、翻转、镜像、旋转、缩放、剪切和变换图像,调整图像颜色,应用各种特殊效果,或绘制文本、直线、多边形、椭圆和贝塞尔曲线。

From the ImageMagic API site:

PHP
MagickWand for PHP a native PHP-extension to the ImageMagick MagickWand API.
IMagick is a native PHP extension to create and modify images using the ImageMagick API. Documentation for the extension is available here.
phMagick is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.

ImageMagick® is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.

落花随流水 2024-07-24 20:21:42

使用 PHP 中的 GD2 库,您可以轻松旋转图像,将其临时存储为 PNG,然后像现在一样在页面中使用它。

应该有大量的脚本给出了如何使用 GD2 的一个很好的例子。

with the GD2 library in PHP, you can rotate the image easily, store it temporarily as a PNG, and then use it in your page the same way you do now.

should be loads of scripts out there who give a great example of how to use GD2.

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