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