Changeset 3950 for branches/2.1
- Timestamp:
- 11/03/05 01:00:53 (3 years ago)
- Files:
-
- branches/2.1/src/ChangeLog.Meadow (modified) (1 diff)
- branches/2.1/src/mw32fns.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.1/src/ChangeLog.Meadow
r3948 r3950 1 2005-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 1 7 2005-11-02 MIYOSHI Masanori <miyoshi@meadowy.org> 2 8 branches/2.1/src/mw32fns.c
r3936 r3950 7364 7364 for (i = 0; i < nformats; i++) 7365 7365 { 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; 7366 7375 img_type.type = imagemagick_image_type_lisp_symbol (formats[i]); 7367 7376 magick_relinquish_magick_memory ((void **) formats[i]);
