1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE codermap [ 3<!ELEMENT codermap (coder)+> 4 <!ATTLIST codermap xmlns CDATA #FIXED ''> 5 <!ELEMENT coder EMPTY> 6 <!ATTLIST coder xmlns CDATA #FIXED '' magick NMTOKEN #REQUIRED 7 name NMTOKEN #REQUIRED> 8]> 9<!-- 10 Associate an image format with the specified coder module. 11 12 ImageMagick has a number of coder modules to support the reading and/or 13 writing of an image format (e.g. JPEG). Some coder modules support more 14 than one associated image format and the mapping between an associated 15 format and its respective coder module is defined in this configuration 16 file. For example, the PNG coder module not only supports the PNG image 17 format, but the JNG and MNG formats as well. 18--> 19<codermap> 20 <!-- <coder magick="GIF87" name="GIF"/> --> 21 <!-- <coder magick="JPG" name="JPEG"/> --> 22 <!-- <coder magick="PGM" name="PNM"/> --> 23</codermap> 24