File: gih.txt

package info (click to toggle)
gimp 2.6.10-1%2Bsqueeze4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 128,948 kB
  • ctags: 55,327
  • sloc: ansic: 635,142; lisp: 10,678; sh: 10,420; makefile: 9,729; python: 3,366; perl: 2,713; xml: 1,152; yacc: 554; lex: 339
file content (51 lines) | stat: -rw-r--r-- 1,590 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Gimp Image Pipe Format

The gih format is use to store a series of brushes, and some extra info 
for how to use them. 

Basically, the format is real simple. It is a text header, followed
by a series of gbr files, all concatenated together.

An image pipe can be thought of as an n-dimensional array of brushes.  
Each dimension is indexed when the pipe is used in painting by some 
parameter, eg an incremental counter, a random value, pointing device 
pen pressure,tilt or velocity , etc.

An idea for how to implement editing of image pipes (with GIMP) is
that each layer of the edited image representing the pipe is divided
conceptually (and visualized by guides) into equal-sized elements,
each element containing one pixmap brush. The typical cases are only
one layer, with an array of brushes, or many layers, with just one
brush per layer. (For instance something produced by some animator.)

The header format
================

First line is the name of the pipe.
Second line is the number of brushes in file, followed by the contents of
the gimp-image-pipe-parameters parasite (a text string)

ie
===========================
Fire
6 ncells:6 step:20 dim:1 cols:3 rows:2 rank0:6 selection:incremental
===========================

The rest is just gbr files catted in.

Making a gih file:

	1. Create a series of gbr files. Note these do not
	need to be the same size.

	2. Create a text header like above.

	3. Combine them all together:

		cat header brush1.gbr brush2.gbr brush3.gbr > foo.gih


Or use the GIH plug-in to save a brush pipe from an image.


Thats about it for now.