GDI+ MAC 上的库
我想在带有 CPP 的 MAC 中使用基本的 GDI+ API。 (Libgdiplus 可在 Linux 上使用)
I want to use basic GDI+ API's in MAC with CPP. (Libgdiplus is available on Linux)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GDI+ 是一个用于 Windows 的 Microsoft 库。您提到的 linux“libgdiplus”是通过 Cairo 针对 X11 的,并且不能在 Mac OS X 上工作,尽管如果您打算使用 X11 会话,您可以使用相同的代码在 OS X 下(即不适用于本机 OS X 应用程序)。
据我所知,GDI+ 没有本地 OS X 端口。
GDI+ is a Microsoft library for Windows. The linux "libgdiplus" that you refer to is targeted to X11 via Cairo, and will not work on Mac OS X, though you may be able to use the same code if you intend to use an X11 session under OS X (i.e. not for native OS X apps).
There is no native OS X port of GDI+ that I know of.
您应该使用 Core Graphics(Mac OS X 和 iOS 上的本机图形架构)编写绘图代码,而不是使用其他平台的技术端口。
You should write your drawing code using Core Graphics, the native graphics architecture on Mac OS X and iOS, rather than use a port of a technology from another platform.