Powerpoint 2010 的 CFillFormat
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论