I was trying to create a .xcf format image (GIMP format), but I am getting an error message (IM 6.3.6.4 on Mac OS 10.4.x)
convert logo2.gif logo2.xcf
convert: no encode delegate for this image format `logo2.xcf'.
Is this a bug or am I missing something?
Fred Weinhaus
Can't create xcf format image
Re: Can't create xcf format image
ImageMagick can read but cannot write the XCF image format. Type
- identify -list format
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Can't create xcf format image
Thanks.
Sorry, I overlooked that when I first looked at identify -list format for the xcf format.
Sorry, I overlooked that when I first looked at identify -list format for the xcf format.
Re: Can't create xcf format image
Hi,
Currently mine shows
XCF* XCF r-- GIMP image
How do I modify to
XCF rw+
Thank you
Currently mine shows
XCF* XCF r-- GIMP image
How do I modify to
XCF rw+
Thank you
Re: Can't create xcf format image
You need to write a WriteXCFImage() method inside coders/xcf.c then modify RegisterXCFImage() and add this line:
- entry->encoder=(EncodeImageHandler *) WriteXCFImage;
Re: Can't create xcf format image
Thank you,magick wrote:You need to write a WriteXCFImage() method inside coders/xcf.c then modify RegisterXCFImage() and add this line:
- entry->encoder=(EncodeImageHandler *) WriteXCFImage;
guess i have to do compiling work. (not sure can i done it by myself, but i'll study on it first)