在 C++ 中将图像插入到 RTF 数据中与MFC
我必须使用 C++ 和 MFC 创建 RTF 文件。该 RTF 文件将包含图像,每个图像上都有一个链接。
RTF 始终位于内存中,从不写入硬盘。
我需要在运行时在 RTF 文件中插入图像(图像并不总是相同)。用MFC可以实现吗?我不确定 CRichEditCtrl 是否可以做到这一点......
谢谢
I have to create a RTF file using C++ and MFC. This RTF file will contain images with a link on each of them.
The RTF is always in memory, it's never written on the hard disk.
I need to insert an image in the RTF file at runtime(the image is not always the same). Is it possible to do so with MFC? I'm not sure if CRichEditCtrl can do that...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅将图像插入 Rich Edit 。
See Insert image into Rich Edit.
最后,此页面的方法起作用了:
http://www.codeguru。 com/Cpp/controls/richedit/article.php/c5383
Finally, the method at this page worked:
http://www.codeguru.com/Cpp/controls/richedit/article.php/c5383