We experienced some differences while rendering text with purePDF too.
The text looks bolder and worst for us chunks are a bit larger than the text rendered by flash and it could be cropped in the resulting PDF.
To prevent the text from being cropped we use a little trick :
We use the horizontalScaling property of the chunks like this :
var chunk:Chunk = new Chunk(spanText, font) ;
chunk.setHorizontalScaling(0.989);
This fix the crop issue but not fix the bolder font issue.
Please let me now if you've found a solution for that.
Thanks
Best regards
Dasde