Home
last modified time | relevance | path

Searched refs:XCF (Results 1 – 25 of 1415) sorted by relevance

12345678910>>...57

/dports/graphics/xcftools/xcftools-d72ba82/src/
H A Dxcfinfo.c97 XCF.version,XCF.width,XCF.height, in main()
99 XCF.numLayers, in main()
102 for( i = XCF.numLayers ; i-- ; ) { in main()
104 XCF.layers[i].isVisible ? '+' : '-', in main()
105 XCF.layers[i].dim.width, XCF.layers[i].dim.height, in main()
106 XCF.layers[i].dim.c.l, XCF.layers[i].dim.c.t, in main()
109 if( XCF.layers[i].opacity < 255 ) in main()
111 if( XCF.layers[i].hasMask ) in main()
113 if( XCF.layers[i].isGroup ) in main()
118 if ( XCF.version > 2 ) { in main()
[all …]
H A Dxcf-general.c188 struct xcfImage XCF ; variable
199 XCF.version = 0 ; in getBasicXcfInfo()
206 if( XCF.version < 0 || XCF.version > 3 ) { in getBasicXcfInfo()
209 XCF.version); in getBasicXcfInfo()
212 XCF.compression = COMPRESS_NONE ; in getBasicXcfInfo()
213 XCF.colormapptr = 0 ; in getBasicXcfInfo()
216 XCF.width = xcfL(ptr); ptr += 4 ; in getBasicXcfInfo()
217 XCF.height = xcfL(ptr); ptr += 4 ; in getBasicXcfInfo()
222 XCF.colormapptr = data ; in getBasicXcfInfo()
234 for( XCF.numLayers = 0 ; xcfOffset(ptr,8*4) ; XCF.numLayers++, ptr+=4 ) in getBasicXcfInfo()
[all …]
H A Dflatspec.c131 spec->layers = XCF.layers ; in complete_flatspec()
132 spec->numLayers = XCF.numLayers ; in complete_flatspec()
140 if( j == XCF.numLayers ) in complete_flatspec()
147 XCF.layers[j].mode : spec->layers[i].mode ; in complete_flatspec()
149 XCF.layers[j].opacity : spec->layers[i].opacity ; in complete_flatspec()
152 if( hasMask && !XCF.layers[j].hasMask && in complete_flatspec()
153 XCF.layers[j].mask.hierarchy == 0 ) in complete_flatspec()
156 spec->layers[i] = XCF.layers[j] ; in complete_flatspec()
214 spec->dim.height = XCF.height ; in complete_flatspec()
215 spec->dim.width = XCF.width ; in complete_flatspec()
[all …]
/dports/graphics/krita/krita-4.4.8/plugins/impex/xcf/3rdparty/xcftools/
H A Dxcf-general.c229 struct xcfImage XCF ;
247 XCF.version = 0 ;
256 if (XCF.version < 0 || XCF.version > 3) {
261 XCF.colormapptr = 0 ;
274 XCF.colormapptr = data ;
286 XCF.numLayers = 0;
295 XCF.numLayers++;
298 XCF.layers = xcfmalloc(XCF.numLayers * sizeof(struct xcfLayer)) ;
365 xcffree(XCF.layers);
372 xcffree(XCF.layers);
[all …]
H A Dflatspec.c139 spec->layers = XCF.layers ; in complete_flatspec()
140 spec->numLayers = XCF.numLayers ; in complete_flatspec()
148 if( j == XCF.numLayers ) { in complete_flatspec()
157 XCF.layers[j].mode : spec->layers[i].mode ; in complete_flatspec()
159 XCF.layers[j].opacity : spec->layers[i].opacity ; in complete_flatspec()
162 if( hasMask && !XCF.layers[j].hasMask && in complete_flatspec()
163 XCF.layers[j].mask.hierarchy == 0 ) { in complete_flatspec()
168 spec->layers[i] = XCF.layers[j] ; in complete_flatspec()
226 spec->dim.height = XCF.height ; in complete_flatspec()
227 spec->dim.width = XCF.width ; in complete_flatspec()
[all …]
/dports/graphics/darktable38/darktable-3.8.0/src/external/libxcf/
H A Dxcf.h186 typedef struct xcf_t XCF; typedef
188 XCF *xcf_open(const char *filename);
189 int xcf_close(XCF *xcf);
192 int xcf_set(XCF *xcf, xcf_field_t field, ...);
194 int xcf_add_layer(XCF *xcf);
195 int xcf_add_channel(XCF *xcf);
198 int xcf_add_data(XCF *xcf, const void *data, const int data_channels);
H A Dxcf.c165 static int xcf_pointer_size(XCF *xcf) in xcf_pointer_size()
197 static int xcf_write_float(XCF *xcf, const float value) in xcf_write_float()
325 static int xcf_write_image_header(XCF *xcf) in xcf_write_image_header()
410 static int xcf_write_layer_header(XCF *xcf) in xcf_write_layer_header()
523 static int xcf_write_channel_header(XCF *xcf) in xcf_write_channel_header()
791 XCF *xcf_open(const char *filename) in xcf_open()
793 XCF *xcf = (XCF *)calloc(1, sizeof(XCF)); in xcf_open()
811 int xcf_close(XCF *xcf) in xcf_close()
856 int xcf_set(XCF *xcf, xcf_field_t field, ...) in xcf_set()
1081 int xcf_add_layer(XCF *xcf) in xcf_add_layer()
[all …]
H A DREADME.md3 …small stand alone library for writing [GIMP](https://gimp.org/) XCF files. Reading of XCF files is…
16 - Not all features of XCF are supported, most notably:
63 The XCF file is always in some specific internal state, depending on which you can set some things.…
76 - `XCF *xcf_open(const char *filename)`
77 Creates a new XCF document or returns NULL when there was an error.
79 - `int xcf_close(XCF *xcf)`
82 - `int xcf_set(XCF *xcf, xcf_field_t field, ...)`
113 - `int xcf_add_layer(XCF *xcf)`
116 - `int xcf_add_channel(XCF *xcf)`
119 - `int xcf_add_data(XCF *xcf, const void *data, const int data_channels)`
[all …]
/dports/graphics/darktable/darktable-3.6.1/src/external/libxcf/
H A Dxcf.h186 typedef struct xcf_t XCF; typedef
188 XCF *xcf_open(const char *filename);
189 int xcf_close(XCF *xcf);
192 int xcf_set(XCF *xcf, xcf_field_t field, ...);
194 int xcf_add_layer(XCF *xcf);
195 int xcf_add_channel(XCF *xcf);
198 int xcf_add_data(XCF *xcf, const void *data, const int data_channels);
H A Dxcf.c165 static int xcf_pointer_size(XCF *xcf) in xcf_pointer_size()
197 static int xcf_write_float(XCF *xcf, const float value) in xcf_write_float()
325 static int xcf_write_image_header(XCF *xcf) in xcf_write_image_header()
410 static int xcf_write_layer_header(XCF *xcf) in xcf_write_layer_header()
523 static int xcf_write_channel_header(XCF *xcf) in xcf_write_channel_header()
791 XCF *xcf_open(const char *filename) in xcf_open()
793 XCF *xcf = (XCF *)calloc(1, sizeof(XCF)); in xcf_open()
811 int xcf_close(XCF *xcf) in xcf_close()
856 int xcf_set(XCF *xcf, xcf_field_t field, ...) in xcf_set()
1081 int xcf_add_layer(XCF *xcf) in xcf_add_layer()
[all …]
H A DREADME.md3 …small stand alone library for writing [GIMP](https://gimp.org/) XCF files. Reading of XCF files is…
16 - Not all features of XCF are supported, most notably:
63 The XCF file is always in some specific internal state, depending on which you can set some things.…
76 - `XCF *xcf_open(const char *filename)`
77 Creates a new XCF document or returns NULL when there was an error.
79 - `int xcf_close(XCF *xcf)`
82 - `int xcf_set(XCF *xcf, xcf_field_t field, ...)`
113 - `int xcf_add_layer(XCF *xcf)`
116 - `int xcf_add_channel(XCF *xcf)`
119 - `int xcf_add_data(XCF *xcf, const void *data, const int data_channels)`
[all …]
/dports/devel/radare2/radare2-5.1.1/libr/magic/d/default/
H A Dgimp10 # XCF: file(1) magic for the XCF image format used in the GIMP developed
14 0 string gimp\ xcf GIMP XCF image data,
26 # XCF: file(1) magic for the patterns used in the GIMP, developed
34 # XCF: file(1) magic for the brushes used in the GIMP, developed
/dports/sysutils/sleuthkit/sleuthkit-4.7.0/framework/modules/c_FileTypeSigModule/file-5.08/magic/Magdir/
H A Dgimp10 # XCF: file(1) magic for the XCF image format used in the GIMP developed
14 0 string gimp\ xcf GIMP XCF image data,
27 # XCF: file(1) magic for the patterns used in the GIMP, developed
35 # XCF: file(1) magic for the brushes used in the GIMP, developed
/dports/graphics/krita/krita-4.4.8/plugins/impex/xcf/
H A Dkis_xcf_import.cpp168 if (XCF.version < 0 || XCF.version > 3) { in convert()
179 …dbgFile << XCF.version << "width = " << XCF.width << "height = " << XCF.height << "layers = " << X… in convert()
182 …KisImageSP image = new KisImage(document->createUndoStore(), XCF.width, XCF.height, KoColorSpaceRe… in convert()
188 for (int i = 0; i < XCF.numLayers; ++i) { in convert()
192 xcfLayer& xcflayer = XCF.layers[i]; in convert()
/dports/graphics/imlib2_loaders/imlib2_loaders-1.7.0/
H A DREADME.in9 XCF loader:
11 The XCF loader cannot be packaged together with Imlib 2 because Imlib 2
12 is distributed under the BSD license, whereas the XCF loader is using
14 under the GPL. The XCF loader therefore is GPL'd as well.
H A DREADME9 XCF loader:
11 The XCF loader cannot be packaged together with Imlib 2 because Imlib 2
12 is distributed under the BSD license, whereas the XCF loader is using
14 under the GPL. The XCF loader therefore is GPL'd as well.
/dports/sysutils/file/file-5.39/magic/Magdir/
H A Dgimp22 # XCF: file(1) magic for the XCF image format used in the GIMP (.xcf) developed
28 0 string gimp\ xcf GIMP XCF image data,
42 # XCF: file(1) magic for the patterns used in the GIMP (.pat), developed
53 # XCF: file(1) magic for the brushes used in the GIMP (.gbr), developed
/dports/devel/py-magic/file-5.40/magic/Magdir/
H A Dgimp22 # XCF: file(1) magic for the XCF image format used in the GIMP (.xcf) developed
28 0 string gimp\ xcf GIMP XCF image data,
42 # XCF: file(1) magic for the patterns used in the GIMP (.pat), developed
53 # XCF: file(1) magic for the brushes used in the GIMP (.gbr), developed
/dports/graphics/xcftools/xcftools-d72ba82/
H A DREADME5 information from the Gimp's native file format XCF. The tools
6 are designed to allow efficient use of layered XCF files as
12 xcf2pnm converts XCF files to ppm, pgm or pbm format,
18 xcf2png converts XCF files to PNG format, flattening
23 xcfinfo lists information about layers in an XCF file.
25 The tools can either flatten an XCF file as given, or extract specific
H A Dexit.1i19 The specified XCF file does not exist or cannot be read.
62 The XCF file contains presumably valid features that
66 an XCF file that will provoke this return. Please notify the author if you
70 The XCF file is malformed.
/dports/graphics/xcftools/xcftools-d72ba82/manpo/
H A Dda.po60 "being interpreted as an XCF file. The command is invoked as\n"
65 "fortolkes som XCF-fil. Kommandoen bliver startet som I{kommando\n"
296 "of the XCF canvas. Usually used with B{-S}."
299 "hj�rne af XCF-l�rredet. Bruges normalt sammen med B{-S}."
328 "image will cover the entire XCF canvas."
587 "alle de synlige lag i XCF-filen fladgjort til et enkelt\n"
597 "the layer ordering in the XCF file will be ignored."
605 "position i XCF filen ikke betyder noget."
807 msgstr "Den angivne XCF-fil findes ikke eller kan ikke l�ses."
868 msgid "The XCF file is malformed."
[all …]
H A Dmanpages.pot54 "being interpreted as an XCF file. The command is invoked as\n"
218 "of the XCF canvas. Usually used with B{-S}."
238 "image will cover the entire XCF canvas."
320 msgid "The first line contains general information about the XCF file:"
419 "the XCF format used by B{gimp}(1) to the generic image formats\n"
470 "the layer ordering in the XCF file will be ignored."
564 "the XCF format used by B{gimp}(1) to the generic image format\n"
583 "B{xcf2pnm}(1) (q.v.) to flatten an XCF image and then displays\n"
628 msgid "The specified XCF file does not exist or cannot be read."
669 "write an XCF file that will provoke this return. Please notify\n"
[all …]
/dports/graphics/xcftools/xcftools-d72ba82/po/
H A Dda.po433 msgid "XCF file shrunk while reading it"
434 msgstr "XCF-filen skrumpede under l�sning"
466 msgid "Corrupted or malformed XCF file"
467 msgstr "Beskadiget eller ugyldig XCF-fil"
470 msgid "Corrupted or truncated XCF file"
471 msgstr "Beskadiget eller afkortet XCF-fil"
503 msgid "Not an XCF file at all (magic not recognized)"
504 msgstr "Dette er slet ikke en XCF-fil (xcf-signaturen mangler)"
510 "Advarsel: Version %d af XCF-formatet er ikke underst�ttet\n"
591 msgid "Only one XCF file per command line, please"
[all …]
/dports/x11-wm/fvwm2/fvwm-2.6.9/modules/FvwmConsole/
H A D.fvwm2rc.sample12 # open xterm with console and FvwmConsole - XCF at the begining
13 *FvwmConsoleSubst '^XCF' 'FvwmConsole -C -e /usr/lib/X11/fvwm2/FvwmConsoleC.pl'
/dports/emulators/mess/mame-mame0226/src/devices/cpu/tlcs90/
H A Dtlcs90.cpp268 #define XCF 0x08 macro
1747 if (a8 == 0) F |= XCF; in execute_run()
1751 if ( F & XCF ) in execute_run()
1756 if (a8 == 0) F |= XCF; in execute_run()
1764 if (a16 == 0) F |= XCF; in execute_run()
1765 else F &= ~XCF; in execute_run()
1785 if (a8 == 0) F |= XCF; in execute_run()
1789 if ( F & XCF ) in execute_run()
1794 if (a8 == 0) F |= XCF; in execute_run()
1802 if (a16 == 0) F |= XCF; in execute_run()
[all …]

12345678910>>...57