1img-intro(n) Img img-intro(n)
2
3
4
5______________________________________________________________________________
6
8 img-intro - Introduction to Img
9
11 package require Tk
12
13 package require Img ?1.4?
14
15______________________________________________________________________________
16
18 Img is a Tk extension, adding support for many other Image formats, as
19 listed below. The individual formats are described in more detail on
20 their own pages.
21
22 bmp Windows bitmap format. See img-bmp.
23
24 dted DTED terrain elevation data interpreted as image. See img-dted.
25
26 gif The venerable graphics interchange format (with transparency,
27 but without LZW. The latter due to patent issues). See img-gif.
28
29 ico Windows icon files. See img-ico.
30
31 jpeg The format for lossy compressed still pictures specified by the
32 Joint Picture Experts Group. See img-jpeg.
33
34 pcx Paintbrush image format. See img-pcx.
35
36 pixmap While the other formats are handlers for the Tk photo image type
37 this is a new image type for Tk. See img-pixmap.
38
39 png Portable Network Graphics, successor to GIF. See img-png.
40
41 ppm Portable Pixmaps. See img-ppm.
42
43 ps Postscript and PDF (Portable document format). Requires an
44 external application, ghostview, for its operation. See img-ps.
45
46 raw Raw matrix data interpreted as image. See img-raw.
47
48 sgi Native SGI format. See img-sgi.
49
50 sun Sun raster images. See img-sun.
51
52 tga Targa files. See img-tga.
53
54 tiff Tagged Interchange File Format. See img-tiff.
55
56 window Put the content of a Tk window into an image. See img-window.
57
58 xbm X Bitmaps. See img-xbm.
59
60 xpm X Pixmaps. See img-xpm.
61
62 This version only works with Tcl/Tk 8.3 or higher. If you are using Tk
63 8.2, please use Img 1.3. If you are using Tk 8.1 or lower please stick
64 with Img 1.2.4 (which is still available). And if you are using Tk4.2
65 or lower, please stick with Img 1.1.4 (which is also still available).
66
68 img-bmp, img-dted, img-gif, img-ico, img-jpeg, img-pcx, img-pixmap,
69 img-png, img-ppm, img-ps, img-raw, img-sgi, img-sun, img-tga, img-tiff,
70 img-window, img-xbm, img-xpm
71
73 bmp, gif, ico, image handling, jpeg, pcx, pdf, pixmap, png, postscript,
74 ppm, ps, sgi, sun, tga, tiff, tk, window, xbm, xpm
75
77 Copyright (c) 1995-2009 Jan Nijtmans <nijtmans@users.sourceforge.net>
78
79
80
81
82img 1.4 img-intro(n)