上传者: chen_0123456789
|
上传时间: 2021-11-28 18:36:16
|
文件大小: 459KB
|
文件类型: -
RAW格式转BMP、JPEG等格式程序
C# code to call dcraw exe:
Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo("dcraw.exe", "-T D:\\sample.CR2");
startInfo.CreateNoWindow = true;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.UseShellExecute = false;
proc.StartInfo = startInfo;
proc.Start();
while (!proc.HasExited)
{
}
proc.Close();