在剪贴板中查找图像类型
我使用“Comment.Scope.CopyAsPicture()”将图像从单词复制到剪贴板 如何在剪贴板中找到该图像的类型,以便我可以在本地文件系统中写入具有正确扩展名的图像?
I have an image copied to the clicpboard from the word using "Comment.Scope.CopyAsPicture()"
How can i find the type of this image in the clipboard, so that i can write the image with proper extension in local file system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 DataFromats 中,我们只有 Bitmap 成员。 ..
通常您选择要存储的格式
,但您可以创建自己的格式并使用它
In DataFromats we have only Bitmap member...
normally you choose the format to store
but You can create Your own format and use it
使用 DataFormats.Bitmap,您可以将其作为位图获取,并使用框架函数来保存它。
if (iData.GetDataPresent(DataFormats.Bitmap))
位图 bImg = (Bitmap)iData.GetData();
Using DataFormats.Bitmap you can get this as a bitmap and use the framework functions to save it.
if (iData.GetDataPresent(DataFormats.Bitmap))
Bitmap bImg = (Bitmap)iData.GetData();