Changeset 11575 for ImageMagick/trunk
- Timestamp:
- 07/06/08 15:56:11 (8 weeks ago)
- Files:
-
- 1 modified
-
ImageMagick/trunk/magick/shear.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/magick/shear.c
r11574 r11575 767 767 { 768 768 byte<<=1; 769 if (PixelIntensity(p) < threshold) 769 if ((p->red < threshold) || (p->green < threshold) || 770 (p->blue < threshold)) 770 771 byte|=0x01; 771 772 bit++; … … 816 817 { 817 818 byte<<=1; 818 if (PixelIntensity(p) < threshold) 819 if ((p->red < threshold) || (p->green < threshold) || 820 (p->blue < threshold)) 819 821 byte|=0x01; 820 822 bit++;
