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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Magick::CoderInfo Class</title>
<meta name="GENERATOR" content="OpenOffice.org 1.0 (Win32)">
<meta name="AUTHOR" content="Bob Friesenhahn">
<meta name="CREATED" content="20020805;13531808">
<meta name="CHANGEDBY" content="Bob Friesenhahn">
<meta name="CHANGED" content="20020805;13535284">
<meta name="DESCRIPTION" content="Class to access raw image pixels.">
<meta name="KEYWORDS" content="ImageMagick,Pixel,Magick++">
<link rel=stylesheet type=text/css href=../../www/magick.css>
</head>
<body lang="en-US" text="#ffffff" link="#0000ff" vlink="#ff0000" bgcolor="#fbc713">
<h3 align="center">Magick::CoderInfo</h3>
<p>The <i>CoderInfo</i> class provides the means to provide information regarding ImageMagick support for an image format (designated by a magick string). It may be used to provide support for a specific named format (provided as an argument to the constructor), or as an element of a container when format support is queried using the <a href="STL.html#coderInfoList">coderInfoList()</a> templated function.</p>
<p>The following code fragment illustrates how CoderInfo may be used.</p>
<p><tt><font color="#000066">CoderInfo info("GIF");</font></tt><br>
<tt><font color="#000066">cout << info->name() << ": (" << info->description() << ") : ";</font></tt><br>
<tt><font color="#000066">cout << "Readable = ";</font></tt><br>
<tt><font color="#000066">if ( info->isReadable() )</font></tt><br>
<tt><font color="#000066">cout << "true";</font></tt><br>
<tt><font color="#000066">else</font></tt><br>
<tt><font color="#000066">cout << "false";</font></tt><br>
<tt><font color="#000066">cout << ", ";</font></tt><br>
<tt><font color="#000066">cout << "Writable = ";</font></tt><br>
<tt><font color="#000066">if ( info->isWritable() )</font></tt><br>
<tt><font color="#000066">cout << "true";</font></tt><br>
<tt><font color="#000066">else</font></tt><br>
<tt><font color="#000066">cout << "false";</font></tt><br>
<tt><font color="#000066">cout << ", ";</font></tt><br>
<tt><font color="#000066">cout << "Multiframe = ";</font></tt><br>
<tt><font color="#000066">if ( info->isMultiframe() )</font></tt><br>
<tt><font color="#000066">cout << "true";</font></tt><br>
<tt><font color="#000066">else</font></tt><br>
<tt><font color="#000066">cout << "false";</font></tt><br>
<tt><font color="#000066">cout << endl;</font></tt></p>
<p style="margin-bottom: 0cm">The methods available in the <i>CoderInfo</i> class are shown in the following table:</p>
<br>
<p align="center" style="margin-bottom: 0cm"><b>CoderInfo Methods</b></p>
<table width="100%" border="1" cellpadding="2" cellspacing="2">
<tr>
<td>
<p align="center"><b>Method</b></p></td>
<td>
<p align="center"><b>Returns</b></p></td>
<td>
<p align="center"><b>Signature</b></p></td>
<td>
<p align="center"><b>Description</b></p></td></tr>
<tr>
<td>
<p align="center"><a name="CoderInfo"></a><font size="2">CoderInfo</font></p></td>
<td bgcolor="#999999"></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Construct object corresponding to named format (e.g. "GIF"). An exception is thrown if the format is not supported.</font></p></td></tr>
<tr>
<td>
<p align="center"><a name="name"></a><font size="2">name</font></p></td>
<td>
<p><font size="2">std::string</font></p></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Format name (e.g. "GIF").</font></p></td></tr>
<tr>
<td>
<p align="center"><a name="description"></a><font size="2">description</font></p></td>
<td>
<p><font size="2">std::string</font></p></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Format description (e.g. "CompuServe graphics interchange format").</font></p></td></tr>
<tr>
<td>
<p align="center"><a name="isReadable"></a><font size="2">isReadable</font></p></td>
<td>
<p><font size="2">bool</font></p></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Format is readable.</font></p></td></tr>
<tr>
<td>
<p align="center"><a name="isWritable"></a><font size="2">isWritable</font></p></td>
<td>
<p><font size="2">bool</font></p></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Format is writeable.</font></p></td></tr>
<tr>
<td>
<p align="center"><a name="isMultiFrame"></a><font size="2">isMultiFrame</font></p></td>
<td>
<p><font size="2">bool</font></p></td>
<td>
<p><font size="2">void</font></p></td>
<td>
<p><font size="2">Format supports multiple frames.</font></p></td></tr></table>
<br>
</body>
</html>
|