在剪贴板中查找图像类型

发布于 2024-09-11 06:26:09 字数 96 浏览 2 评论 0原文

我使用“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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

守不住的情 2024-09-18 06:26:09

DataFromats 中,我们只有 Bitmap 成员。 ..

通常您选择要存储的格式

IDataObject data = Clipboard.GetDataObject();

if (data.GetDataPresent(DataFormats.Bitmap))
{
  Bitmap bitmap = (data.GetData(DataFormats.Bitmap,true) as Bitmap);

  bitmap.Save("image.bmp",System.Drawing.Imaging.ImageFormat.Bmp);
  bitmap.Save("image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);

}

,但您可以创建自己的格式并使用它

DataFormats.Format jepgFormat = DataFormats.GetFormat("jpgFormat");

Image image = new Image(); 
DataObject myDataObject = new DataObject(jpegFormat.Name, image );

// Copies myObject into the clipboard.
Clipboard.SetDataObject(myDataObject);

In DataFromats we have only Bitmap member...

normally you choose the format to store

IDataObject data = Clipboard.GetDataObject();

if (data.GetDataPresent(DataFormats.Bitmap))
{
  Bitmap bitmap = (data.GetData(DataFormats.Bitmap,true) as Bitmap);

  bitmap.Save("image.bmp",System.Drawing.Imaging.ImageFormat.Bmp);
  bitmap.Save("image.jpg",System.Drawing.Imaging.ImageFormat.Jpeg);

}

but You can create Your own format and use it

DataFormats.Format jepgFormat = DataFormats.GetFormat("jpgFormat");

Image image = new Image(); 
DataObject myDataObject = new DataObject(jpegFormat.Name, image );

// Copies myObject into the clipboard.
Clipboard.SetDataObject(myDataObject);
喜爱纠缠 2024-09-18 06:26:09

使用 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();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文