--- parser3/src/classes/image.C 2001/05/11 17:45:10 1.26 +++ parser3/src/classes/image.C 2001/06/28 07:41:59 1.28 @@ -5,8 +5,9 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: image.C,v 1.26 2001/05/11 17:45:10 parser Exp $ + $Id: image.C,v 1.28 2001/06/28 07:41:59 parser Exp $ */ +static char *RCSId="$Id: image.C,v 1.28 2001/06/28 07:41:59 parser Exp $"; #include "pa_config_includes.h" @@ -87,23 +88,23 @@ struct GIF_Header { /// JPEG file header struct JFIF_Header { - char length[2]; // length of JFIF segment marker - char identifier[5]; // JFIF identifier - char version[2]; // version - char units; // units X of Y pixel density - char xdensity[2]; // X pixel density - char ydensity[2]; // X pixel density - char xthumbnails; // width of thumbnails - char ythumbnails; // height of thumbnails - char reserved; // reserved + char length[2]; //< length of JFIF segment marker + char identifier[5]; //< JFIF identifier + char version[2]; //< version + char units; //< units X of Y pixel density + char xdensity[2]; //< X pixel density + char ydensity[2]; //< X pixel density + char xthumbnails; //< width of thumbnails + char ythumbnails; //< height of thumbnails + char reserved; //< reserved }; /// JPEG frame header struct JPG_Frame { - char length[2]; // length of image marker - char data; // data precision of bits/sample - char height[2]; // image height - char width[2]; // image width - char numComponents; // number of color components + char length[2]; //< length of image marker + char data; //< data precision of bits/sample + char height[2]; //< image height + char width[2]; //< image width + char numComponents; //< number of color components }; // @@ -544,8 +545,8 @@ static void _polybar(Request& r, const S class Font : public Pooled { public: - int height; /* Font heigth */ - int space; /* Default char width */ + int height; //< Font heigth + int space; //< Default char width gdImage& ifont; const String& alphabet;