annotate README.imagemagick @ 109868:c1ae0a9b14a1

reworked :index functionality a bit so its faster
author Joakim <joakim@localhost.localdomain>
date Thu, 01 Jul 2010 23:38:33 +0200
parents 73512e4aa257
children 22892dff6fc3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
1 This is the imagemagick branch of Emacs. Imagemagick can now be used
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
2 to load many new image formats, and also do useful transforms like
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
3 scaling and rotation.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
4
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
5 This file will attempt to contain draft NEWS, Changelog and manual
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
6 entries for the new functionality.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
7
109853
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
8 You might need to regenerate the configure scripts:
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
9 aclocal
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
10 automake
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
11 autoheader
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
12 autoconf
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
13 ./configure --with-imagemagick
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
14
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
15
109865
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
16 * TODO
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
17
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
18 - image-type-header-regexps priorities the jpeg loader over the
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
19 imagemagick one. This is not wrong, but how should a user go about
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
20 prefering the imagemagick loader? The user might like zooming etc in
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
21 jpegs.
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
22
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
23 - For some reason its unbearably slow to look at a page in a large
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
24 image bundle using the :index feature. The imagemagick "display"
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
25 command is also a bit slow, but nowhere near as slow as the emacs
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
26 code. It seems imagemagick tries to unpack every page when loading
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
27 the bundle. This feature is not the primary usecase for the
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
28 imagemagick patch though.
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
29
109868
c1ae0a9b14a1 reworked :index functionality a bit so its faster
Joakim <joakim@localhost.localdomain>
parents: 109866
diff changeset
30 ImageMagick 6.6.2-8 introduced a bugfix for single page djvu load.
c1ae0a9b14a1 reworked :index functionality a bit so its faster
Joakim <joakim@localhost.localdomain>
parents: 109866
diff changeset
31 To benefit from the bugfix, the loader code in image.c must be changed.
c1ae0a9b14a1 reworked :index functionality a bit so its faster
Joakim <joakim@localhost.localdomain>
parents: 109866
diff changeset
32
109866
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
33 - optimize number of pages calculation for bundles as suggested by
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
34 imagemagick forum: "set the density to something low like 2 and use
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
35 MagickPingImage()"
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
36
109865
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
37 - zooming the image like what is done for fonts in face-remap.el would
109866
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
38 be a useful and demo friendly addition. Some work has been done on
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
39 image-mode.el to acihieve this.
109865
131c45ff9c34 documented some more
Joakim <joakim@localhost.localdomain>
parents: 109864
diff changeset
40
109866
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
41 - look for optimizations for handling images with low depth
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
42
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
43 - it would be neat if the graphicsmagick fork of imagemagick could
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
44 optionaly be used.
109853
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
45
109866
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
46
73512e4aa257 image-mode changes. removed the imagemagick specific :geometry and :crop interface that wasnt very good.
Joakim <joakim@localhost.localdomain>
parents: 109865
diff changeset
47
109856
4baaa8ac0f74 image count
Joakim <joakim@localhost.localdomain>
parents: 109853
diff changeset
48 * TODO
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
49 #B _ complete documentation drafts below
109856
4baaa8ac0f74 image count
Joakim <joakim@localhost.localdomain>
parents: 109853
diff changeset
50
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
51 #B X fix inconsistencys with spelling of imagemagick in the src
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
52 #B X report number of images in image bundle types somehow
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
53 Works like for "gif" support. Thanks to Juri Linkov.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
54 #B X probably add pdf to inhibited types
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
55 #B X inhibit types is defconst should probably be defcustom
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
56 #B _ decide what to do with some uncommitted imagemagick support
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
57 functions for image size etc.
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
58 #B _ Test with more systems
109856
4baaa8ac0f74 image count
Joakim <joakim@localhost.localdomain>
parents: 109853
diff changeset
59 Tested on Fedora 12 so far, and the libmagick that ships with it.
4baaa8ac0f74 image count
Joakim <joakim@localhost.localdomain>
parents: 109853
diff changeset
60 Ubuntu 8.04 was also tested, but it seems it ships a broken ImageMagick.
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
61 #B X Also need some way to handle render methods that only work on newer ImageMagicks
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
62 Is handled by configure now
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
63
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
64 * Some nits from Stefan Monnier
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
65 I just took a quick look at the code and I see the following nits to fix:
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
66 #B _ obviously a merge will have to come with a good ChangeLog.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
67 #B X also the merge will need to come with documentation. Maybe not in the
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
68 Texinfo form yet, but at least in the etc/NEWS with enough info that
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
69 describes the `scale' and other such arguments that someone can start
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
70 using them.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
71 #B X the README talks about naming inconsistencies, I think these should be
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
72 fixed before a first commit (should be straightforward).
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
73
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
74 #B X the "let" in image.el should not be followed by a line break and the while
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
75 should be replaced by a dolist.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
76
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
77 #B X the prototype of imagemagick_load_image has some odd indentation in ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
78 its args, not sure what happened.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
79 #B X a few lines in the C code break the 80columns limit.
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
80 #B X please use ANSI style function declarations rather than K&R for new code. ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
81 #B X you can get rid of the prototypes by reordering the code. ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
82 #B X the docstrings in DEFUN should not be indented (they'll display ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
83 weirdly otherwise in C-h f).
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
84 #B X Some "{" are at the end of a for/if rather than on their own line. ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
85 #B X why use "*( imtypes + i)" rather than "imtypes[i]"? ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
86 #B X some "," lack a space after them. ([[2010.06.14]])
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
87 #B X several "=" and "==" lack spaces around them. ([[2010.06.14]])
109856
4baaa8ac0f74 image count
Joakim <joakim@localhost.localdomain>
parents: 109853
diff changeset
88
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
89
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
90 * NEWS entry
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
91 ** ImageMagick support
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
92 It is now possible to use the Imagemagick library to load many new
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
93 image formats in Emacs.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
94
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
95 To enable, use the following configure option:
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
96 --with-imagemagick
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
97
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
98 The new function (imagemagick-types) returns a list of image file
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
99 extensions that your installation of imagemagick supports.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
100
109853
fe07c47cf7a7 merge and fixes
Joakim <joakim@localhost.localdomain>
parents: 109852
diff changeset
101 The function (imagemagick-register-types) will enable the imagemagick
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
102 support for the extensions in imagemagick-types minus the types listed
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
103 in imagemagick-types-inhibit.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
104
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
105 imagemagick-types-inhibit has the value '(C HTML HTM TXT PDF) by default.
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
106 This means imagemagick will be used also to load jpeg files, if you
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
107 have both jpeg and imagemagick libraries linked. Add 'JPG to
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
108 imagemagick-types-inhibit if you do not want this.
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
109
109864
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
110 imagemagick-render-type is a new variable which can be set to choose
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
111 between screen render methods.
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
112
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
113 - 0 is a conservative metod which works with older ImageMagick
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
114 versions. It is a bit slow, but robust.
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
115
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
116 - 1 utilizes a newer ImageMagick method
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
117
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
118
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
119 Images loaded with imagemagick will support a couple of new display
109864
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
120 specification behaviours:
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
121
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
122 - if the :width and :height keywords are specified, these values are
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
123 used for scaling the image. If only one of :width or :height is
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
124 specified, the other one will be calculated so as to preserve the
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
125 aspect ratio.If both :width and :height are specified, aspect ratio
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
126 will not be preserved.
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
127
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
128 - :rotation specifies a rotation angle in degrees.
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
129
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
130 - :index specifies which image inside an image bundle file format, such
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
131 as TIFF or DJVM, to view.
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
132
109864
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
133 The image-metadata function can be used to retrieve the total number
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
134 of images in an image bundle. This is simmilar to how GIF files work.
458fda2a5cff improved lisp interface to scaling, doc changed acordingly
Joakim <joakim@localhost.localdomain>
parents: 109863
diff changeset
135
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
136 * Changelog entry
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
137 2010-06-12 Joakim Verona <joakim@verona.se>
109862
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
138 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
139 defined:
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
140 (imagemagick_image_p): New function to test for ImageMagic img.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
141 (imagemagick_load): New function to load ImageMagick img.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
142 (imagemagick_load_image): New function, helper for imagemagick_load
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
143 (imagemagick-types): New function.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
144 (Qimagemagick): New Lisp_object.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
145 * image.el:
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
146 (imagemagick-types-inhibit): New var.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
147 (imagemagick-register-types): New function.
62b3728b6678 attempt at Changelog entry, see README.imagemagick
Joakim <joakim@localhost.localdomain>
parents: 109861
diff changeset
148 * config.in, Makefile.in, configure.in
109852
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
149
e56f669f17ce initial imagemagick readme
Joakim <joakim@localhost.localdomain>
parents:
diff changeset
150 * Manual entry
109861
8e0241dfb81c cosmetics, and changing of defconst to defcustom
Joakim <joakim@localhost.localdomain>
parents: 109857
diff changeset
151 nothing yet, but the NEWS entry could be adapted.