Problems with inserting svg-image into pdf

Hello,

To clarify: MixTitleWithBold.svg is presented in attachment in my prevois message in this thread.

Best Regards,

Vasili.

Hi Vasili,

Thanks for your inquiry. I have tested the scenario and have managed to reproduce the same issue at my side. For the sake of correction, I have logged this problem in our issue tracking system as WORDSNET-9257. I have linked this forum thread to the same issue and you will be notified via this forum thread once this issue is resolved.

We apologize for your inconvenience.

Hi Vasili,

Further to my last post, we have a good news for you that is WORDSNET-9223 has now been resolved and its fix will be included in the next version of Aspose.Words (v13.11.0) which is planned to be released by the end of November 2013. We will inform you via this forum thread as soon as November 2013 release is published.

The issues you have found earlier (filed as WORDSNET-9223) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.

Hello Tahir,

Thanks for fix WORDSNET-9223 issue.
Do you have information about date when WORDSNET-9257 will be fixed?

Best Regards,
Vasili.

Hi Vasili,

Thanks for your inquiry.

We have a good
news for you that is WORDSNET-9257 has now been resolved and its fix
will be included in the next version of Aspose.Words (v13.12.0) which is
planned to be released by the end of December 2013. We will inform you
via this forum thread as soon as December 2013 release is published.

The issues you have found earlier (filed as WORDSNET-9257) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.

The issues you have found earlier (filed as PDFNEWNET-35730) have been fixed in Aspose.Pdf for .NET 9.4.0.


This message was posted using Notification2Forum from Downloads module by Aspose Notifier.

Hi Vasili,


Thanks for your patience. As stated above your reported issue (PDFNETNET-35730) has been fixed in Aspose.Pdf for .NET 9.4.0. Please check following code snippet for the purpose.

SvgLoadOptions options = new SvgLoadOptions();<o:p></o:p>

options.ConversionEngine = SvgLoadOptions.ConversionEngines.NewEngine;<o:p></o:p>

options.PageInfo.Margin.Top = 0;<o:p></o:p>

options.PageInfo.Margin.Left = 0;<o:p></o:p>

options.PageInfo.Margin.Bottom = 0;<o:p></o:p>

options.PageInfo.Margin.Right = 0;<o:p></o:p>

string inFile = @“35738.svg”;<o:p></o:p>

string outFile = @“35738.pdf”;<o:p></o:p>

Document pdfDocument = new Document(inFile, options);<o:p></o:p>

pdfDocument.Save(outFile);

Please feel free to contact us for any further assistance.

Best Regards,

Hi there,

Regarding WORDSNET-9003, it
is to update you that our product team has completed the
analysis of this issue and has come to a conclusion that they won’t be
able to implement the fix to your issue. We have closed this issue with
‘‘Won’t Fix’’ resolution. I am quoting developer’s comments here for
your reference.

1. The document contains a picture in the EMF format. EMF format is a metafile, vector graphics. It contains drawing commands.

2.
When Aspose.Words converts EMF to PDF it attempts to preserve it as a
vector image. E.g. so it takes less space and scales and prints in PDF
well.

3. Some rare EMF commands cannot be (or very hard to)
implement because they are raster commands, as opposed to vector
commands. Fortunately, such commands occur rarely. This EMF has one of
such commands that is impossible to render using Aspose.Words.
Impossible to render into a vector format in PDF. We do not have a
solution for this. It is not likely to be fixed in the near future and
therefore postponed.

4. Aspose.Words can either render metafiles
as vectors into PDF or rasterize them. There is a class PdfSaveOptions
with properties MetafileRenderingMode and MetafileRenderingOptions. This
metafile can be switched to rendering as Bitmap and it will probably
appear better. But we cannot have it as a vector. So there is no
solution possible.