我正在制作照片上传应用,需要允许用户从相机上传原始文件(这些不是jpeg),并让服务器自动创建它们的jpeg版本。我目前安装了Imagemagick,但我认为没有办法在那里进行。
相机一直都有新的原始格式,所以我正在寻找最新版本的命令,并且命令php exec()也是一个选项。
有没有人对原始转换提出任何建议?
答案 0 :(得分:9)
实际上,正如您在此列表中所看到的,ImageMagick确实支持RAW照片:http://www.imagemagick.org/script/formats.php(例如.NEF尼康照片和.CR2佳能照片)。
.CR2照片的示例代码:
$im = new Imagick( 'source.CR2' );
$im->setImageFormat( 'jpg' );
$im->writeImage( 'result.jpg' );
$im->clear();
$im->destroy();
答案 1 :(得分:2)
更容易 sudo apt-get install ufraw ufraw-batch
然后使用ufraw(参见手册页) 或者使用使用ufraw的Imagemagic
转换mypic.RAF mypic.jpeg
答案 2 :(得分:1)
您可以使用exec()上传,当您转换为jpg时,您可以使用jpg“提示”来加快速度 - 据说只能读取尽可能多的数据来创建jpg而不是整个文件。
从内存中,定义出现在图像之前的转换之后:
convert -define jpeg:size=128x128 input.raw -thumbnail 128x128 output.jpg
Imagemagick使用Ufraw处理RAW文件,我发现使用我的CR2文件我需要稍微调整其中一个文件。我认为支持文件取决于Ufraw delagate。
我认为三星RAW文件存在问题,但不仅仅是Imagemagick
我修改的delegates.xml文件在这一行上将4更改为6:
<delegate decode="dng:decode" stealth="True" command="dcraw.exe -6 -w -O "%u.ppm" "%i""/>
答案 3 :(得分:0)
我使用Imagick进行了完全相同的页面。我成功地将TIFF,DNG,CR2文件转换为JPEG。在执行此操作之前,您必须参考此视频https://www.youtube.com/watch?v=q3c6O85_LoA&index=29&list=LLkmyV_KYAFxKz9gE_fEbjTA&t=23s
以下是使用JavaScript,HTML和PHP的代码:
<?php
$file=$_FILES['file'];
$fname=$_FILES['file']['name'];
$ftmp=$_FILES['file']['tmp_name'];
$ferr=$_FILES['file']['error'];
$check=explode(".",$fname);
$ext=end($check);
if(!$ftmp)
{
//echo"ERROR: Please select a file first!";
?>
<html>
<script>
alert("ERROR: Please select a file first!");
location.href='/Image/1.html';
</script>
</html>
<?php
}
else if(!preg_match("/\.(tif|tiff|cr2|pef|nef|dng)$/i",$fname))
{
//echo"ERROR: File is not in TIF,TIFF,CR2,PEF,NEF or DNG</br>";
//echo"File is of $ext format";
?>
<html>
<script>
alert("ERROR: File is not in TIF,TIFF,CR2,PEF,NEF or DNG");
location.href='/Image/1.html';
</script>
</html>
<?php
}
else
{
//echo".$ext File uploaded";
?>
<html>
<script>
alert("File uploaded");
</script>
</html>
<?php
$im=new Imagick($ftmp);
$im->setImageFormat('jpg');
file_put_contents("/var/www/html/Image/Converted/a.jpg",$im);//Path where converted image will be saved on localhost.
?>
<html>
<script>
function ok()
{
location.href='/Image/1.html';
}
</script>
<img src="/Image/Converted/a.jpg" height="900" width="600">
<input type=Button Value=Done onclick="ok()">
</html>
<?php
$im->clear();
$im->destroy();
}?>
HTML代码。在操作标记中插入您的php文件名称。
<html>
<body>
<h1 align=center>Upload image</h1>
<form action=*.php method=POST enctype='multipart/form-data'>
Please select the file:<br>
<input type=file name=file><br>
<input type=SUBMIT value=Submit>
<input type=Reset value=Reset>
</form>
</body>