用 C # 实现 SVG 到 PNG 的转换

我一直在尝试使用 C # 将 SVG 图像转换为 PNG,而不需要编写太多代码。有人能推荐一个库或者示例代码来做这件事吗?

128028 次浏览

您可以调用命令行版本的 inkscape 来完成以下操作:

Http://harriyott.com/2008/05/converting-svg-images-to-png-in-c.aspx

此外,还有一个 C # SVG 渲染引擎,主要是为了让 SVG 文件可以在网络上使用,如果这是你的问题,可能会适合你的需要:

原创作品
Http://www.codeplex.com/svg

带有修复和更多活动的分叉: (添加7/2013)
Https://github.com/vvvv/svg

我用的是 蜡染。Batik 是用 Java 编写的图形库,带有命令行界面。这使得你可以从 C # 中使用 Batik,就像下面 Delphi 中的例子一样:

procedure ExecNewProcess(ProgramName : String; Wait: Boolean);
var
StartInfo : TStartupInfo;
ProcInfo : TProcessInformation;
CreateOK : Boolean;
begin
FillChar(StartInfo, SizeOf(TStartupInfo), #0);
FillChar(ProcInfo, SizeOf(TProcessInformation), #0);
StartInfo.cb := SizeOf(TStartupInfo);
CreateOK := CreateProcess(nil, PChar(ProgramName), nil, nil, False,
CREATE_NEW_PROCESS_GROUP + NORMAL_PRIORITY_CLASS,
nil, nil, StartInfo, ProcInfo);
if CreateOK then begin
//may or may not be needed. Usually wait for child processes
if Wait then
WaitForSingleObject(ProcInfo.hProcess, INFINITE);
end else
ShowMessage('Unable to run ' + ProgramName);


CloseHandle(ProcInfo.hProcess);
CloseHandle(ProcInfo.hThread);
end;


procedure ConvertSVGtoPNG(aFilename: String);
const
ExecLine = 'c:\windows\system32\java.exe -jar C:\Apps\batik-1.7\batik-rasterizer.jar ';
begin
ExecNewProcess(ExecLine + aFilename, True);
end;

you can use altsoft xml2pdf lib for this

当我必须在服务器上对 svgs 进行光栅化时,我最终使用 P/Invoke 来调用 library svg 函数(您可以从 GIMP 图像编辑程序的 Windows 版本中获得 dls)。

[DllImport("kernel32.dll", SetLastError = true)]
static extern bool SetDllDirectory(string pathname);


[DllImport("libgobject-2.0-0.dll", SetLastError = true)]
static extern void g_type_init();


[DllImport("librsvg-2-2.dll", SetLastError = true)]
static extern IntPtr rsvg_pixbuf_from_file_at_size(string file_name, int width, int height, out IntPtr error);


[DllImport("libgdk_pixbuf-2.0-0.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
static extern bool gdk_pixbuf_save(IntPtr pixbuf, string filename, string type, out IntPtr error, __arglist);


public static void RasterizeSvg(string inputFileName, string outputFileName)
{
bool callSuccessful = SetDllDirectory("C:\\Program Files\\GIMP-2.0\\bin");
if (!callSuccessful)
{
throw new Exception("Could not set DLL directory");
}
g_type_init();
IntPtr error;
IntPtr result = rsvg_pixbuf_from_file_at_size(inputFileName, -1, -1, out error);
if (error != IntPtr.Zero)
{
throw new Exception(Marshal.ReadInt32(error).ToString());
}
callSuccessful = gdk_pixbuf_save(result, outputFileName, "png", out error, __arglist(null));
if (!callSuccessful)
{
throw new Exception(error.ToInt32().ToString());
}
}

There is a much easier way using the library http://svg.codeplex.com/ (Newer version @GIT, @NuGet). Here is my code

var byteArray = Encoding.ASCII.GetBytes(svgFileContents);
using (var stream = new MemoryStream(byteArray))
{
var svgDocument = SvgDocument.Open(stream);
var bitmap = svgDocument.Draw();
bitmap.Save(path, ImageFormat.Png);
}

要添加到@Anish 的响应中,如果您在将 SVG 导出到图像时无法看到文本,您可以创建一个递归函数来遍历 SVGDocument 的子级,如果可能的话,尝试将其强制转换为 SvgText (添加您自己的错误检查)并设置字体系列和样式。

    foreach(var child in svgDocument.Children)
{
SetFont(child);
}


public void SetFont(SvgElement element)
{
foreach(var child in element.Children)
{
SetFont(child); //Call this function again with the child, this will loop
//until the element has no more children
}


try
{
var svgText = (SvgText)parent; //try to cast the element as a SvgText
//if it succeeds you can modify the font


svgText.Font = new Font("Arial", 12.0f);
svgText.FontSize = new SvgUnit(12.0f);
}
catch
{


}
}

有问题就告诉我。