Changeset 3950 for branches/2.1

Show
Ignore:
Timestamp:
11/03/05 01:00:53 (3 years ago)
Author:
miyoshi
Message:

(define_imagemagick_type): Ignore Encapsulated
PostScript? related formats, which ImageMagick? cannot handle
correctly. Refer to ticke:209.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.1/src/ChangeLog.Meadow

    r3948 r3950  
     12005-11-03  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * mw32fns.c (define_imagemagick_type): Ignore Encapsulated 
     4        PostScript related formats, which ImageMagick cannot handle 
     5        correctly.  Refer to ticke:209. 
     6 
    172005-11-02  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    28 
  • branches/2.1/src/mw32fns.c

    r3936 r3950  
    73647364  for (i = 0; i < nformats; i++) 
    73657365    { 
     7366      /* Ignore Encapsulated PostScript related formats.  */ 
     7367      if (!_stricmp (formats[i], "EPI") 
     7368          || !_stricmp (formats[i], "EPS") 
     7369          || !_stricmp (formats[i], "EPSF") 
     7370          || !_stricmp (formats[i], "EPSI") 
     7371          || !_stricmp (formats[i], "EPT") 
     7372          || !_stricmp (formats[i], "EPT2") 
     7373          || !_stricmp (formats[i], "EPT3")) 
     7374        continue; 
    73667375      img_type.type = imagemagick_image_type_lisp_symbol (formats[i]); 
    73677376      magick_relinquish_magick_memory ((void **) formats[i]);