RSS/Atom feed Twitter
Site is read-only, email is disabled

help:how to use GIMP to Parse PSD

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

3 of 3 messages available
Toggle history

Please log in to manage your subscriptions.

help:how to use GIMP to Parse PSD Hades 30 Apr 09:17
  help:how to use GIMP to Parse PSD Michael Schumacher 30 Apr 09:45
  help:how to use GIMP to Parse PSD Alexandre Prokoudine 02 May 07:45
Hades
2010-04-30 09:17:51 UTC (over 14 years ago)

help:how to use GIMP to Parse PSD

Dear

If I want use GIMP to parse psd file(photoshop file format) in my program(C++ or Java),how should I do?

And I Have to read which part of GIMP SourceCode?

Thanks

best wishes

Hades 2010-04-30

Michael Schumacher
2010-04-30 09:45:28 UTC (over 14 years ago)

help:how to use GIMP to Parse PSD

Von: "Hades"

If I want use GIMP to parse psd file(photoshop file format) in my program(C++ or Java),how should I do?

PSD support in GIMP is based on an old version of the PSD format specification (the current one is locked away in the Adobe Photoshop SDK and can't be used with Free software, in my opinion).

There's also a number of known bugs in regard to PSD support, i.e. do not expect that any program will be able to read some PSD files written by GIMP.

And I Have to read which part of GIMP SourceCode?

http://git.gnome.org/browse/gimp/tree/plug-ins/file-psd

When reusing code from there, pay attention to the license:

the GNU General Public License Version 3 is what grants you permission to use the code in the first places, but also enforces the rules you'll have to follow. See http://www.gnu.org/licenses/quick-guide-gplv3.html for an introduction.

Regards, Michael

Alexandre Prokoudine
2010-05-02 07:45:57 UTC (over 14 years ago)

help:how to use GIMP to Parse PSD

On 4/30/10, Hades wrote:

Dear

If I want use GIMP to parse psd file(photoshop file format) in my program(C++ or Java),how should I do?

Hello dear,

Apart from using GIMP's code you might like investigating other possibilities like libpsd and code.goole.com projects [2].

[1] http://sourceforge.net/projects/libpsd/ [2] http://code.google.com/hosting/search?q=psd&projectsearch=Search+projects

Alexandre