Hi,
I'd like to convert a pdf to jpg.
It's working perfectly except for a pdf containing a "point masonry", i don't know the right translation in english (it's actually a symbol of the freemasonry).
In this sample, you can see the symbol, it looks like 3 points drawing a triangle between "te" and "st".
In the jpg resulting from the conversion, the symbol has disappeared.
I'm using this code with Aspose 10.0.5.0 :
public override void ConvertFirstPageToImageStream(int dpi, Stream output)
{
PdfConverter converter = new PdfConverter();
try
{
converter.BindPdf(_document);
converter.Resolution = new Resolution(dpi);
converter.DoConvert();
if (converter.HasNextImage())
converter.GetNextImage(output);
output.Seek(0, SeekOrigin.Begin);
}
catch
{
converter.Close();
throw;
}
}
Thanks for your help.