I am trying to convert my bitmap image to XAML format. Currently I am using Potrace in command Prompt. I will be passing the input file through command prompt only. My problem is that I have to do the same using C# code. I have to call the Potrace process externally and execute it. I tried the following code
Process potrace = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = "potrace.exe",
Arguments = "-s -u 1", //SVG
RedirectStandardInput = true,
RedirectStandardOutput = true,
RedirectStandardError = Program.IsDebug,
UseShellExecute = false,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden
},
EnableRaisingEvents = false
};
StringBuilder svgBuilder = new StringBuilder();
potrace.OutputDataReceived += (object sender2, DataReceivedEventArgs e2) =>
{
svgBuilder.AppendLine(e2.Data);
};
if (Program.IsDebug)
{
potrace.ErrorDataReceived += (object sender2, DataReceivedEventArgs e2) =>
{
Console.WriteLine("Error: " + e2.Data);
};
}
potrace.Start();
potrace.BeginOutputReadLine();
if (Program.IsDebug)
{
potrace.BeginErrorReadLine();
}
BinaryWriter writer = new BinaryWriter(potrace.StandardInput.BaseStream);
Bitmap.Save(writer.BaseStream, ImageFormat.Bmp);
potrace.StandardInput.WriteLine();
potrace.WaitForExit();
This code gives me an error, the compiler says Program does not exist in this content.! Help me out in solving this problem. If you have any other suggestions, I'm open to it.
Just use the
C#
version ofPotrace
see here.