Changeset 513

Show
Ignore:
Timestamp:
11/01/09 17:46:10 (3 weeks ago)
Author:
cristy
Message:
 
Location:
ImageMagick/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • ImageMagick/trunk/ChangeLog

    r508 r513  
     12009-11-01  6.5.7-4 Cristy  <quetzlzacatenango@image...> 
     2  * Use -define delegate:bimodal=true to activate any bimodal delegates. 
     3 
    142009-10-28  6.5.7-3 Cristy  <quetzlzacatenango@image...> 
    25  * Convert SVG clipping path points from unsigned to long. 
  • ImageMagick/trunk/config/delegates.xml

    r190 r513  
    5555    %y  input image y resolution 
    5656 
     57  Set option delegate:bimodal=true to process bimodal delegates otherwise they 
     58  are ignored. 
    5759--> 
    5860<delegatemap> 
  • ImageMagick/trunk/config/delegates.xml.in

    r187 r513  
    5555    %y  input image y resolution 
    5656 
     57  Set option delegate:bimodal=true to process bimodal delegates otherwise they 
     58  are ignored. 
    5759--> 
    5860<delegatemap> 
  • ImageMagick/trunk/magick/constitute.c

    r469 r513  
    966966    filename[MaxTextExtent]; 
    967967 
     968  const char 
     969    *option; 
     970 
    968971  const DelegateInfo 
    969972    *delegate_info; 
     
    10451048    } 
    10461049  (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) && 
    10481054      (GetPreviousImageInList(image) == (Image *) NULL) && 
    10491055      (GetNextImageInList(image) == (Image *) NULL) &&