summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2007-08-26 21:39:22 +0000
committerAlbert Astals Cid <aacid@kde.org>2007-08-26 21:39:22 +0000
commit2b1ef8f06879eb0b79288d57540c238ea833db24 (patch)
treed191983f7be6a7ceaf0c9bd2806f8a13e8661cc2 /utils
parent20bcac5ee1988befb9c590a0d16cb615f0c49901 (diff)
Fix bug 12121
Diffstat (limited to 'utils')
-rw-r--r--utils/ImageOutputDev.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ImageOutputDev.cc b/utils/ImageOutputDev.cc
index 6c2b428e..8aea9e71 100644
--- a/utils/ImageOutputDev.cc
+++ b/utils/ImageOutputDev.cc
@@ -152,7 +152,7 @@ void ImageOutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
// copy the stream
size = height * ((width + 7) / 8);
for (i = 0; i < size; ++i) {
- fputc(str->getChar() ^ 0xff, f);
+ fputc(str->getChar(), f);
}
str->close();