假设用户上传.txt或.php文件,我想为其生成.png缩略图。有没有一种简单的方法,这不需要我打开文件并将其内容写入新的.png?我有ImageMagick和FFmpeg可用,必须有一种方法来利用它,但我一直在寻找很多但没有运气。
提前致谢。
答案 0 :(得分:2)
答案 1 :(得分:2)
您可以使用ffmpeg
:
ffmpeg -video_size 640x480 -chars_per_frame 60000 -i in.txt -frames:v 1 out.png
但是,它有一些警告:
默认情况下,每帧渲染6000个字符,因此可能无法绘制所有文本。您可以使用-chars_per_frame
和/或-framerate
输入选项进行更改。默认帧速率为25。
文字不会自动换行,因此您必须为文字添加换行符以适合您的输出视频尺寸。
答案 2 :(得分:0)
您可以使用PHP的类imagick
将文件转换为图像。
它很适合txt文件。
try
{
$im = new imagick("inputfile.txt[0]");
if ($im)
{
$im->setImageAlphaChannel(imagick::ALPHACHANNEL_DEACTIVATE);
$im->setImageFormat('jpg');
$im->setImageCompressionQuality(85);
file_put_contents("outfile.jpg",$im->getImageBlob());
}
} catch(Exception $e)
{
echo "cannot process";
}
// When imagick is unable to read the file, it may wrongly
// set internal server error 500 status code.
// I do not understand why that happens, because the script
// continues normally. Anyway, lets overwrite it here for all cases.
header("HTTP/1.1 200 OK");
答案 3 :(得分:0)
$image = new Imagick();
$image->readImage("text:" . $filename . "[0]");
$image->resizeImage($width, $height, Imagick::FILTER_LANCZOS, 1);
$image->setImageFormat('png');
$image->writeImage($linkImage);