png文件能写入文字信息吗?
png文件能写入文字信息吗?
比如一个图片hello.png
我想在图片里面储存一些信息:
author: John
website : http://google.com
然后用一些特殊的工具查看这些信息。请问有没有这种可能性?
------解决方案--------------------
<?php //创建图像
$imgname="aa.png";//你的图片路径+名字
$image = imagecreatefrompng($imgname);
$text = 'AUTHOR:MM你好';//要写的文字
$<a style="color:#f60; text-decoration:underline;" title= "red"href="https://www.php.cn/zt/122037.html" target="_blank">red = imagecolorallocate($image, 235, 20, 20);//调配颜色
imagestring($image, 5, 0, 0, 'ABCDDFEFEF', $red);//非中文字体的string可以用这个函数添加
$font = 'new.ttc';//字体文件
imagettftext($image, 20, 0, 100, 40, $red, $font, $text);//中文文字的添加用这个函数
//输出图像
header('Content-type: image/png');
imagepng($image);
imagedestroy($image); <div class="clear"></div>
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号