24 lines
1009 B
Diff
24 lines
1009 B
Diff
diff --git a/filters/karbon/pdf/SvgOutputDev.cpp b/filters/karbon/pdf/SvgOutputDev.cpp
|
|
index f3b74e3..ffdbf01 100644
|
|
--- filters/karbon/pdf/SvgOutputDev.cpp
|
|
+++ filters/karbon/pdf/SvgOutputDev.cpp
|
|
@@ -488,7 +488,7 @@ void SvgOutputDev::drawImage(GfxState *state, Object */*ref*/, Stream *str,
|
|
if (maskColors) {
|
|
for (int y = 0; y < height; y++) {
|
|
dest = (unsigned int *)(buffer + y * 4 * width);
|
|
- Guchar * pix = imgStr->getLine();
|
|
+ unsigned char * pix = imgStr->getLine();
|
|
colorMap->getRGBLine(pix, dest, width);
|
|
|
|
for (int x = 0; x < width; x++) {
|
|
@@ -507,7 +507,7 @@ void SvgOutputDev::drawImage(GfxState *state, Object */*ref*/, Stream *str,
|
|
} else {
|
|
for (int y = 0; y < height; y++) {
|
|
dest = (unsigned int *)(buffer + y * 4 * width);
|
|
- Guchar * pix = imgStr->getLine();
|
|
+ unsigned char * pix = imgStr->getLine();
|
|
colorMap->getRGBLine(pix, dest, width);
|
|
}
|
|
|
|
|