Powerpoint 2010 的 CFillFormat

发布于 2024-12-18 02:23:31 字数 425 浏览 1 评论 0原文

我正在使用 C++ 创建 Powerpoint 2010 幻灯片(在 Windows 7 中)。 我的 .bmp 文件中有一张图片,我想用它填充 CShape。 因此,代码执行以下操作:

_variant_t vPicName= L"MyPicture1";
CShape picShape(slideshapes.Item(vPicName));
CString fullBitmapFilePath = "C:\MyCode\MyPicture.bmp";
CFillFormat picFill(picShape.get_Fill());
picFill.UserPicture(fullBitmapFilePath);

形状在 powerpoint 中绘制为绿色框,但不会填充图片。 同样的代码也适用于 XP 上的 Office 2003。有什么建议吗? 谢谢

I'm using C++ to create a Powerpoint 2010 slide (in Windows 7).
I have a picture in a .bmp file that I'd like to fill the CShape.
So the code does this:

_variant_t vPicName= L"MyPicture1";
CShape picShape(slideshapes.Item(vPicName));
CString fullBitmapFilePath = "C:\MyCode\MyPicture.bmp";
CFillFormat picFill(picShape.get_Fill());
picFill.UserPicture(fullBitmapFilePath);

The shape gets drawn in the powerpoint as a green box, but it doesn't fill with the picture.
This same exact code works with Office 2003 on XP. Any tips?
Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文