Radim Burget
Radim Burget

Reputation: 1516

Read Gimp's XCF image file in Java

Is there a Java library that can read XCF image format (GIMP native file format), i.e. into BufferedImage? I know there is a linux script xcf2png or xcf2jpg. Is it possible to read directly from Java?

Upvotes: 2

Views: 597

Answers (1)

Vinz243
Vinz243

Reputation: 9948

There is no available library that can read or parse XCF file. If you don't want to convert it in the first place, you should be implementing your own parser, using https://gitlab.gnome.org/GNOME/gimp/blob/master/devel-docs/xcf.txt

Upvotes: 1

Related Questions