如何从gtk程序打开gimp并传递GdkPixbuf?
我有一个代表图像的 GdkPixbuf 对象,我在程序中显示该图像。
目前用户可以保存该图像并打开 gimp 来加载它。是否可以直接从c程序打开gimp并将GdkPixbuf对象传递给gimp?
I have a GdkPixbuf object representing an image, I display this image in my program.
Currently the user can save this image and open gimp to load it. Is it possible to open gimp directly from the c program and pass the GdkPixbuf object to gimp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为代码应该在两个程序之间链接以传输对象!也许你必须编写一个 Gimp 插件或
#include
但如果你使用的是 Linux(或其他 Unix),使用虚拟内存文件(如 FIFO)可能会更容易.
参见:
和
I think the code should be linked between two programs to transfer an object! Maybe you have to write a Gimp plugin or
#include <gimp.h>
But using a virtual in-memory file (like FIFO) is probably easier, if you are on Linux (or another Unix).
See:
and