1<html> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> 4<meta http-equiv="Content-Style-Type" content="text/css"> 5<title>TCLMakerNote</title> 6<link rel="stylesheet" href="../css/nitro.css" type="text/css"> 7</head> 8<body> 9<h1 align="left">TCLMakerNote <img src="../image/TWL.gif" align="middle"></h1> 10 11<h2>Definition</h2> 12<dl> 13 <dd> 14 <code>#include <twl/tcl.h></code><br/> <br/> 15 <pre><code> 16typedef struct 17{ 18 union 19 { 20 u32 bitField; 21 struct 22 { 23 u32 imageType : 2; 24 u32 reserved0 : 30; 25 }; 26 }; 27 u32 reserved1; 28} TCLMakerNote; 29 </code></pre> 30</dl> 31 32<h2>Description</h2> 33<p>This structure embeds information in a JPEG file's Exif tag , which enables the image to be loaded by the DSi camera.</p> 34<p>The <a href="TCL_EncodeAndWritePicture.html"><code>TCL_EncodeAndWritePicture(Ex)</code></a> function that is used when encoding embeds to the MakerNote internally, so there is no need to be directly concerned with this structure.</p> 35<p>Sometimes it is necessary to evaluate the appropriateness of the decoded JPEG image. For more information, see the <a href="TCL_IsSameImageType.html"><code>TCL_IsSameImageType</code></a> function.</p> 36<p>The direct use of any of its members from an application is prohibited.</p> 37 38<h2>See Also</h2> 39<p><a href="TCL_EncodeAndWritePicture.html"><CODE>TCL_EncodeAndWritePicture(Ex)</CODE></a><BR> <a href="TCL_IsSameImageType.html"><CODE>TCL_IsSameImageType</CODE></a></p> 40 41<h2>Revision History</h2> 42<p> 432009/03/04 Added description of use of structure when encoding/decoding.<br/> 2008/10/07 Initial version. 44</p> 45 46<hr><p>CONFIDENTIAL</p></body> 47</html> 48