Changeset 11596 for ImageMagick/trunk
- Timestamp:
- 07/08/08 04:37:45 (6 weeks ago)
- Files:
-
- 1 modified
-
ImageMagick/trunk/coders/txt.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/coders/txt.c
r11430 r11596 86 86 % string, is TXT. 87 87 % 88 % The colorspaceof the IsTXT method is:88 % The format of the IsTXT method is: 89 89 % 90 90 % MagickBooleanType IsTXT(const unsigned char *magick,const size_t length) … … 139 139 % pointer to the new image. 140 140 % 141 % The colorspaceof the ReadTEXTImage method is:141 % The format of the ReadTEXTImage method is: 142 142 % 143 143 % Image *ReadTEXTImage(const ImageInfo *image_info, … … 359 359 % the new image. 360 360 % 361 % The colorspaceof the ReadTXTImage method is:361 % The format of the ReadTXTImage method is: 362 362 % 363 363 % Image *ReadTXTImage(const ImageInfo *image_info,ExceptionInfo *exception) … … 503 503 % RegisterTXTImage() adds attributes for the TXT image format to the 504 504 % list of supported formats. The attributes include the image format 505 % tag, a method to read and/or write the colorspace, whether the format505 % tag, a method to read and/or write the format, whether the format 506 506 % supports the saving of more than one frame to the same file or blob, 507 507 % whether the format supports native in-memory I/O, and a brief 508 508 % description of the format. 509 509 % 510 % The colorspaceof the RegisterTXTImage method is:510 % The format of the RegisterTXTImage method is: 511 511 % 512 512 % unsigned long RegisterTXTImage(void) … … 549 549 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 550 550 % 551 % UnregisterTXTImage() removes colorspaceregistrations made by the552 % TXT module from the list of supported colorspaces.553 % 554 % The colorspaceof the UnregisterTXTImage method is:551 % UnregisterTXTImage() removes format registrations made by the 552 % TXT module from the list of supported format. 553 % 554 % The format of the UnregisterTXTImage method is: 555 555 % 556 556 % UnregisterTXTImage(void) … … 576 576 % WriteTXTImage writes the pixel values as text numbers. 577 577 % 578 % The colorspaceof the WriteTXTImage method is:578 % The format of the WriteTXTImage method is: 579 579 % 580 580 % MagickBooleanType WriteTXTImage(const ImageInfo *image_info,Image *image)
