I have a complex graphic with text which exports correctly as a jpg or png file but if I export it as a PDF then some of the sloping letters are missing. How can I go about debugging it? For the sake of an example, I offer some code below, but the graph that results from this code exports correctly. So, I am also unable to reproduce the error in a simple setting. Non-error example:
test = Graphics[{ RGBColor[242/250, 101/250, 34/250, .7],
Disk[{0, 0}, .2],
Black, Table[Text["Abcderfghij", {0, 0}, {-1, 0}, {1, i}], {i, -1, 1, .1}],
Table[Text["Abcderfghij", {0, 0}, {1, 0}, {1, i}], {i, -1, 1, .1}] },
ImageSize -> 257];
Export[fpath <> "test.pdf", test]
Export["test2.svg", test]so maybe the PDF reader cannot handle it as PDF should have embedded SVG unless I'm mistaken. – flinty Apr 22 '21 at 15:14