将字体从 Flash 渲染为图像
我正在尝试使用 .swf 文件上的文本和图像渲染图像。我正在做的是将所有对象及其属性保存在 XML 中,然后使用 imagemagick 渲染所有这些。我面临的问题是 imagemagick 对待字体的方式与 Flash 非常不同,所以我没有得到在 Flash 中看到的内容与在渲染图像上看到的内容的完美副本。
任何人都可以分享一些关于如何在 flash 和 imagemagick 之间匹配字体大小的信息吗?我将非常感激。
谢谢!
I am trying to render an image with text and images that are on a .swf file. What i am doing is saving all the objects and their properties in an XML and then using imagemagick to render all that. the problem i am facing is that imagemagick treats fonts very different than Flash, so i don't get a perfect copy of what i see in the flash to what i see on the rendered image.
Can anyone share some light on how to match font sizes between flash an imagemagick? I would be very grateful.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正在尝试将 Flash 影片中可以看到的一些图像保存到文件中?如果是这样,您可以使用 Flash 中的 Jpeg 编码器来完成此操作。这是一个示例: http://designreviver .com/tutorials/actionscript-3-jpeg-encoder-revealed- saving-images-from-flash/
您仍然需要 php 或其他一些技术来将数据发布到并将其保存为文件,以便用户可以下载它。
Are you trying to save some image that you can see on the flash movie to a file? If so you can use Jpeg encoder in flash to do exactly that. Here is an example: http://designreviver.com/tutorials/actionscript-3-jpeg-encoder-revealed-saving-images-from-flash/
You still need a php or some other technology to post the data to and save it as a file so that the user can download it.