我的公司只有两个可用的 flex pdf 库,AlivePDF和PurePDF。
我很难找到与我需要做的事情相关的非常好的文档,所以我希望从使用这些库的人那里得到一些反馈。
我需要做的主要事情是将一组 DisplayObjects 粘贴到 pdf 中,图像质量不错。我以前使用过org.alivepdf.pdf.PDF.addImage(..)
功能,但图像质量很差,并且不知何故,该过程裁剪了图像的一部分,使其无法使用。
这是可能需要粘贴到 pdf 中的示例:
<s:HGroup id="imageGroup">
<s:Label text="Chart Title" />
<mx:Legend dataProvider="myChart" />
<mx:LineChart id="myChart">
<!-- do chart stuff here -->
</mx:LineChart>
</s:HGroup>