Changeset 513 for ImageMagick/trunk
- Timestamp:
- 11/01/09 17:46:10 (3 weeks ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
config/delegates.xml (modified) (1 diff)
-
config/delegates.xml.in (modified) (1 diff)
-
magick/constitute.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/ChangeLog
r508 r513 1 2009-11-01 6.5.7-4 Cristy <quetzlzacatenango@image...> 2 * Use -define delegate:bimodal=true to activate any bimodal delegates. 3 1 4 2009-10-28 6.5.7-3 Cristy <quetzlzacatenango@image...> 2 5 * Convert SVG clipping path points from unsigned to long. -
ImageMagick/trunk/config/delegates.xml
r190 r513 55 55 %y input image y resolution 56 56 57 Set option delegate:bimodal=true to process bimodal delegates otherwise they 58 are ignored. 57 59 --> 58 60 <delegatemap> -
ImageMagick/trunk/config/delegates.xml.in
r187 r513 55 55 %y input image y resolution 56 56 57 Set option delegate:bimodal=true to process bimodal delegates otherwise they 58 are ignored. 57 59 --> 58 60 <delegatemap> -
ImageMagick/trunk/magick/constitute.c
r469 r513 966 966 filename[MaxTextExtent]; 967 967 968 const char 969 *option; 970 968 971 const DelegateInfo 969 972 *delegate_info; … … 1045 1048 } 1046 1049 (void) SyncImageProfiles(image); 1047 if ((write_info->page == (char *) NULL) && 1050 option=GetImageOption(image_info,"delegate:bimodal"); 1051 if ((option != (const char *) NULL) && 1052 (IsMagickTrue(option) != MagickFalse) && 1053 (write_info->page == (char *) NULL) && 1048 1054 (GetPreviousImageInList(image) == (Image *) NULL) && 1049 1055 (GetNextImageInList(image) == (Image *) NULL) &&
