Changeset 63
- Timestamp:
- 03/31/09 06:24:00 (3 months ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
coders/djvu.c (modified) (2 diffs)
-
utilities/montage.1.in (modified) (1 diff)
-
wand/montage.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/ChangeLog
r60 r63 1 1 2009-03-28 6.5.1-0 Cristy <quetzlzacatenango@image...> 2 2 * Graceful exit in djvu coder when EOF is thrown. 3 * Support -unsharp option for the montage program. 3 4 4 5 2009-03-28 6.5.0-10 Cristy <quetzlzacatenango@image...> -
ImageMagick/trunk/coders/djvu.c
r60 r63 792 792 793 793 images=NewImageList(); 794 for (i=0; i < (long) lc->pages; i++) 794 i=0; 795 if (image_info->number_scenes != 0) 796 i=image_info->scene; 797 for ( ; i < (long) lc->pages; i++) 795 798 { 796 799 image=ReadOneDJVUImage(lc,i,image_info,exception); … … 798 801 break; 799 802 AppendImageToList(&images,CloneImageList(image,exception)); 803 if (image_info->number_scenes != 0) 804 if (image->scene >= (image_info->scene+image_info->number_scenes-1)) 805 break; 800 806 } 801 802 807 djvu_close_lc(lc); 803 808 (void) CloseBlob(images); -
ImageMagick/trunk/utilities/montage.1.in
r1 r63 100 100 \-transparent color make this color transparent within the image 101 101 \-type type image type 102 \-unsharp geometry sharpen the image 102 103 103 104 Image Sequence Operators: -
ImageMagick/trunk/wand/montage.c
r1 r63 115 115 "-transparent color make this color transparent within the image", 116 116 "-type type image type", 117 "-unsharp geometry sharpen the image", 117 118 (char *) NULL 118 119 }, … … 1557 1558 break; 1558 1559 } 1560 if (LocaleCompare("unsharp",option+1) == 0) 1561 { 1562 if (*option == '+') 1563 break; 1564 i++; 1565 if (i == (long) (argc-1)) 1566 ThrowMontageException(OptionError,"MissingArgument",option); 1567 if (IsGeometry(argv[i]) == MagickFalse) 1568 ThrowMontageInvalidArgumentException(option,argv[i]); 1569 break; 1570 } 1559 1571 ThrowMontageException(OptionError,"UnrecognizedOption",option) 1560 1572 }
