vote up 11 vote down star
1

I've been trying to convert SVG images to PNG using C#, without having to write too much code. Can anyone recommend a library or example code for doing this?

flag

4 Answers

vote up 17 vote down check

You can call the command-line version of incscape to do this:

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

Also there is a C# SVG rendering engine, primarily designed to allow SVG files to be used on the web on codeplex that might suit your needs if that is your problem:

http://www.codeplex.com/svg

link|flag
1  
Thanks Espo. I actually wrote that inkscape blog post! Although it "works", it's not a particularly robust solution. I like the codeplex project though - I'll give it a look. Thanks. – harriyott Sep 12 '08 at 13:16
How embarrassing :) Good thing maybe the SVG rendering engine could help you out though. – Espo Sep 12 '08 at 13:19
I take it as a compliment. I've not been quoted to myself before! – harriyott Sep 12 '08 at 13:36
that's hilarious! :) – Jeff Atwood Sep 13 '08 at 9:20
vote up 0 vote down

you can use altsoft xml2pdf lib for this

link|flag
vote up 2 vote down

I'm using Batik for this. The complete Delphi code:

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;
link|flag
vote up 2 vote down

Couldnt help noticing:

@harriyott Isnt it your site www.harriyott.com??

link|flag
Haha, didn't notice that. Maybe he allready know about the incscape-trick then :) But the SVG-rendering might help him if he needs to display svg-images on the web. – Espo Sep 12 '08 at 13:17
yes, thats a nice link! +1 2 u.. – Prakash Sep 12 '08 at 13:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.