Search found 1 match

by mogulman
2015-03-27T11:29:17-07:00
Forum: Users
Topic: NEF to JPG apache error.
Replies: 6
Views: 6140

Re: NEF to JPG apache error.

This worked for me:

<?php
$file = "C:/pics/image003.jpg";
$fileNef = "C:/pics/image003.nef";
$cmd2 = 'convert "' . $fileNef . '" "' . $file . '"';
shell_exec ($cmd2);
?>