Convert JPG/GIF image to PNG in PHP?(在 PHP 中将 JPG/GIF 图像转换为 PNG?)
问题描述
可能重复
将jpg图像转换为gif、png &使用PHP的bmp格式
我有一个 PHP 表单,它允许上传图片并检查 exif_imagetype();
以确保图片有效.
I have a PHP form that allows image uploads and checks exif_imagetype();
to make sure an image is valid.
但是,我希望所有格式(PNG、JPG、JPEG 和 GIF)在提交后最终都是 PNG.
However, I want all formats, PNG, JPG, JPEG, and GIF, to end up being PNG once submitted.
我该怎么做?
推荐答案
你只需要imagepng()
那么.事实上,它几乎变成了一条线:
You just need imagepng()
then. In fact it almost becomes a one-liner:
imagepng(imagecreatefromstring(file_get_contents($filename)), "output.png");
您将使用 $_FILES["id"]["tmp_name"]
作为文件名,并且显然使用不同的输出文件名.但是图像格式探测本身就会变得多余.
You would use $_FILES["id"]["tmp_name"]
for the filename, and a different output filename obviously. But the image format probing itself would become redundant.
这篇关于在 PHP 中将 JPG/GIF 图像转换为 PNG?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 PHP 中将 JPG/GIF 图像转换为 PNG?


基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01