when i create a pdf document with pdfclown 0.1.2 (java) and embed the font via
Font.get(pdfDocument, getResourceFile("lang/DejaVuSans.ttf"));
i can view the pdf just fine in multiple browsers (ie 11, ff 42, chrome 46). but when i open the pdf in the new edge browser shipping with win10 the text doesnt show.
when i replace the font with a font family i.e.
new StandardType1Font(pdfDocument, StandardType1Font.FamilyEnum.Courier, false, false);
the edge browser has no problem showing the text.
am i missing something?