Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I coded a tool which prints small labels. Here“s my problem:

Every printed text on the label looks fine with e.Graphics.DrawString(...) -

Pictures printed with e.Graphics.DrawImage(...) look bad. Small parts like a Copyright-Sign is not readable.

DPI is set to 300 (maximum of printer).

I got those pictures in Vector/SVG-Format from Corel Draw - if I print the Corel Draw File it looks great!

How can I print SVG-Files or similar with C# (.NET 3.5 or 4.0)?

Greetings

share|improve this question

1 Answer

up vote 0 down vote accepted

I have used SVG# before and it worked very well. The project is old, so it might need minor tweaking before it compiles in your .net 3.5/4.0 projects.

Once you get it compile, you may then try to the following snippet

//Create a window that matches the desired output bitmap
SvgWindow window = new SvgWindow(width, height);
window.Src = svgSource;

//Create a GDI renderer for SVG, and use white background
GdiRenderer gdirender = new GdiRenderer(window, Color.White);
Bitmap bitmap = gdirender.Render();

It should generate a bitmap object that you may use to encode for your printing needs.

share|improve this answer
thanks - i installed it. but how to use now? which dll do i have to import to load and print an SVG file in gdi? – MariusK Jul 10 '12 at 9:09
See the updated answer with sample code, hope this helps. – Tianzhen Lin Jul 10 '12 at 13:42
After a few test-prints we decided to use EMF-Format. So we just have to user the Metafile-.NET-Class. But your code-sample is definitely helpful for future projects. Thanks! :-) – MariusK Jul 10 '12 at 16:14
Not working. Throwing lots of useless exceptions which are not described or fixed. – AgentFire Apr 27 at 16:30
SvgWindow requires System.Windows.Forms which is nonsense. – AgentFire Apr 27 at 16:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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