Is there any C/C++ library that I can use to write GIMP xcf files? I want a standalone library that does not depend on the GIMP source (because it is to much work do separate things out from this huge program)?
Library to write gimp's xcf file format
2.4k Views Asked by user877329 At
1
There are 1 best solutions below
Related Questions in FILE-FORMAT
- What format are .tox files stored in?
- Write Pandas DataFrame to file using FORTRAN format string
- filter file content to sorted tables
- Analyzing Wav file format
- What is the letter meaning in XYDATA of JCAMP-DX (NMR) files?
- Prepending a header to a headerless .m4a file
- Recommended binary format for point cloud + metadata?
- Open .lps file in textarea java
- Example pipeline for TFRecords with chunking for long input sequences
- When creating a file format. Is it better to create multiple formats or have several optional sections?
- Different image file format samples
- How to check the color profile of EPS files?
- What is the best way to write an excel file from Java?
- How does one find the start of the "Central Directory" in zip files?
- Reading part of an image without parsing whole file. What file format and library to use?
Related Questions in GIMP
- merging two images with triangle crop
- gimp: resize and "unsharp mask" via script
- GiMP (Scheme) Script-fu error "illegal function"
- Compiling GIMP from source code
- gimp python plug in: how to trigger another user input
- is there any way to connect GIMP with PHP?
- script-fu multiplication : not enought argument
- Remove lens distortion from images captured by an wide angle (180) camera
- Batch fit image in Linux (e.g. GIMP)
- Is there an image format that supports alpha-transparency and animation. While being supported by most browsers?
- Programmatic equivalent of Gimp's Contiguous selection tool
- python-fu select copy paste
- Gimp save all layers to files with the layers size
- ImageMagick: Possible to remove middle in picture?
- Gimp script-fu working only sometimes
Related Questions in READ-WRITE
- Read and Write file that is used by another program
- Faster bash writing to file
- How to permissions to a group in Django 1.8?
- reading and copying lines of text in a specific way
- read/write bit from a structure
- How to read sd card sector by sector? (Android)
- How to repeatedly pass inputs and outputs between a C# Stream and a Python Script?
- Open failed: EACCES (Permission denied) in Android
- Python open file in shared mode
- Connecting to Serial port in QT
- Writing and reading to linux /proc/... filesystem without lseek()
- perl6/rakudo: Problem with writing on the loop-variable
- Improper encoding in Java Read/Write file
- Is it possible to merge two text files without reading lines, using java?
- Sqlite multithreading operations
Related Questions in XCF
- Gimp save all layers to files with the layers size
- How to write data to the ActiveMemory Server used in the XCF system?
- Is it possible to access an xcf active memory server with python?
- Batch save all opened files in GIMP .xcf
- A way to convert PSD format to something Gimp can read
- Automatically export JPGs for each level from a multilevel Gimp image
- How can GIMP save older version of xcf file format
- Get sublayers from group layer with Python in Gimp
- Gradle Dependency using Make
- Extract text from gimp xcf files
- Read Gimp's XCF image file in Java
- Converting images to .xcf format
- How to combine several PNG images as layers in a single XCF image?
- Batch convert from XCF version 11
- Library to write gimp's xcf file format
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Some KDE applications can read .xcf files - so I suspect that if you use KDE libraries, you cna get to read, not shure if it is possible to write .XCF files.
Otherwise, GIMP developers usually advise against separate implementations of access to .xcf file, so that they keep the freedom to change the file format as the program evolution requires it.
An open file format specification for multi-layer graphic images is "Open Raster" - There is a Python gimp plug-inf or reading and writing open-raster, it is the default file format for the MyPaint application - I don't know if there are any C or C++ libraries that can currently deal with OpenRaster files - the specification can be found here:
http://create.freedesktop.org/wiki/OpenRaster/Specification
(it is basically a .zip archive, with the raster data stored in .png s and XML for the relationship between the png files and metadata)