]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sun, 6 Mar 2011 17:31:08 +0000 (17:31 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sun, 6 Mar 2011 17:31:08 +0000 (17:31 +0000)
ChangeLog
coders/hdr.c

index 5cea1e077f5006b7ad14b373152ae32a8037419e..1bf5f2844858285aa465481cba9e7d76eda03004 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2011-03-06  6.6.8-2 Cristy  <quetzlzacatenango@image...>
+  * Support the Radiance HDR image format.
+
 2011-03-06  6.6.8-1 Cristy  <quetzlzacatenango@image...>
   * New version 6.6.8-1.
 
index 1e0052a66f6bc41a1fc511cb4ef0da8e182dee85..b7cf00981d485420b6e367475f11062f1d88bebc 100644 (file)
@@ -10,7 +10,7 @@
 %                            H   H  DDDD   R  R                               %
 %                                                                             %
 %                                                                             %
-%                        Read/Write HDR RGBE Format                           %
+%                    Read/Write Radiance HDR Image Format                     %
 %                                                                             %
 %                              Software Design                                %
 %                                John Cristy                                  %
@@ -75,8 +75,9 @@ static MagickBooleanType
 %                                                                             %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
-%  ReadHDRImage() reads an HDR RGBE and returns it.  It allocates the memory
-%  necessary for the new Image structure and returns a pointer to the new image.
+%  ReadHDRImage() reads the Radiance HDR image format and returns it.  It
+%  allocates the memory necessary for the new Image structure and returns a
+%  pointer to the new image.
 %
 %  The format of the ReadHDRImage method is:
 %
@@ -233,8 +234,8 @@ static Image *ReadHDRImage(const ImageInfo *image_info,ExceptionInfo *exception)
 %                                                                             %
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %
-%  RegisterHDRImage() adds attributes for the HDR RGBE image format to the list
-%  of supported formats.  The attributes include the image format tag, a
+%  RegisterHDRImage() adds attributes for the Radiance HDR image format to the
+%  list of supported formats.  The attributes include the image format tag, a
 %  method to read and/or write the format, whether the format supports the
 %  saving of more than one frame to the same file or blob, whether the format
 %  supports native in-memory I/O, and a brief description of the format.
@@ -252,7 +253,7 @@ ModuleExport size_t RegisterHDRImage(void)
   entry=SetMagickInfo("HDR");
   entry->decoder=(DecodeImageHandler *) ReadHDRImage;
   entry->encoder=(EncodeImageHandler *) WriteHDRImage;
-  entry->description=ConstantString("HDR RGBE image");
+  entry->description=ConstantString("Radiance HDR image format");
   entry->module=ConstantString("HDR");
   (void) RegisterMagickInfo(entry);
   return(MagickImageCoderSignature);