Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个代表图像的 GdkPixbuf 对象,我在我的程序中显示这个图像。
目前用户可以保存这个图像并打开 gimp 来加载它。是否可以直接从c程序打开gimp并将GdkPixbuf对象传递给gimp?
我认为代码应该在两个程序之间链接来传输一个对象!也许您必须编写一个 Gimp 插件或#include <gimp.h>
#include <gimp.h>
但是,如果您在 Linux(或其他 Unix)上,使用虚拟内存文件(如 FIFO)可能更容易。 看:
man mkfifo
和
man 7 fifo