将 CreateIconIndirect 创建的自定义光标保存到 cur 文件中

发布于 2024-07-26 07:04:37 字数 637 浏览 2 评论 0原文

我一直在尝试编写加载 .png 文件、附加热点信息并将其保存到 .cur 文件的代码。

到目前为止,我已经有了创建 System.Windows.Forms.Cursor 对象的代码,我将在下面发布该对象:

Bitmap bmp = new Bitmap(source_image);
IconInfo inf = new IconInfo();
GetIconInfo(bmp.GetHicon(), ref inf);
inf.xHotspot = /* code to get x hotspot */;
inf.yHotspot = /* code to get y hotspot */;
inf.fIcon = false;
IntPtr iconPtr = CreateIconIndirect(ref inf);
return new Cursor(iconPtr);

我直接从 本教程

我已经让光标在我的应用程序中正常工作,但似乎无法将其保存到文件中。 大家有什么帮助吗?

I've been trying to write code that loads a .png file, attaches hotspot information, and saves it to a .cur file.

So far I have code to create a System.Windows.Forms.Cursor object, which I'll post below:

Bitmap bmp = new Bitmap(source_image);
IconInfo inf = new IconInfo();
GetIconInfo(bmp.GetHicon(), ref inf);
inf.xHotspot = /* code to get x hotspot */;
inf.yHotspot = /* code to get y hotspot */;
inf.fIcon = false;
IntPtr iconPtr = CreateIconIndirect(ref inf);
return new Cursor(iconPtr);

I took it directly from this tutorial.

I've gotten the cursor to work properly within my application, there just seems to be no way to save it to a file.
Any help guys?

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

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

发布评论

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

评论(1

橙幽之幻 2024-08-02 07:04:37

我认为没有保存到文件的功能,您可能必须自己写出带有正确标题的文件,请参阅 Win32 中的图标 了解格式详细信息(平面和 bpp 字段 IIRC 中的 x 和 y)

I don't think there is a function to save to a file, you probably have to write out the file with correct headers on your own, see Icons in Win32 for format details (x and y in planes and bpp fields IIRC)

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