author | alwin <alwin> | 2004-04-21 22:57:53 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-04-21 22:57:53 (UTC) |
commit | 15abdc3ac4e7406d15a8a59f43b3ae669099074a (patch) (unidiff) | |
tree | 2ed419f8edf698561359f46dfbf177767f974452 | |
parent | 2a04bf465c332f5e879470f7436852e2d9686083 (diff) | |
download | opie-15abdc3ac4e7406d15a8a59f43b3ae669099074a.zip opie-15abdc3ac4e7406d15a8a59f43b3ae669099074a.tar.gz opie-15abdc3ac4e7406d15a8a59f43b3ae669099074a.tar.bz2 |
fixed a possible crasher
-rw-r--r-- | noncore/graphics/opie-eye/slave/png_slave.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/slave/png_slave.cpp b/noncore/graphics/opie-eye/slave/png_slave.cpp index 86e1cdc..21555b4 100644 --- a/noncore/graphics/opie-eye/slave/png_slave.cpp +++ b/noncore/graphics/opie-eye/slave/png_slave.cpp | |||
@@ -5,129 +5,130 @@ | |||
5 | #include <qobject.h> | 5 | #include <qobject.h> |
6 | #include <qfile.h> | 6 | #include <qfile.h> |
7 | #include <qimage.h> | 7 | #include <qimage.h> |
8 | #include <qpixmap.h> | 8 | #include <qpixmap.h> |
9 | #include <qstring.h> | 9 | #include <qstring.h> |
10 | 10 | ||
11 | /* | 11 | /* |
12 | * GPLv2 from kfile plugin | 12 | * GPLv2 from kfile plugin |
13 | */ | 13 | */ |
14 | PHUNK_VIEW_INTERFACE( "PNG", PNGSlave ); | 14 | PHUNK_VIEW_INTERFACE( "PNG", PNGSlave ); |
15 | 15 | ||
16 | #define CHUNK_SIZE(data, index) ((data[index ]<<24) + (data[index+1]<<16) + \ | 16 | #define CHUNK_SIZE(data, index) ((data[index ]<<24) + (data[index+1]<<16) + \ |
17 | (data[index+2]<< 8) + data[index+3]) | 17 | (data[index+2]<< 8) + data[index+3]) |
18 | #define CHUNK_TYPE(data, index) &data[index+4] | 18 | #define CHUNK_TYPE(data, index) &data[index+4] |
19 | #define CHUNK_HEADER_SIZE 12 | 19 | #define CHUNK_HEADER_SIZE 12 |
20 | #define CHUNK_DATA(data, index, offset) data[8+index+offset] | 20 | #define CHUNK_DATA(data, index, offset) data[8+index+offset] |
21 | 21 | ||
22 | /* TRANSLATOR QObject */ | 22 | /* TRANSLATOR QObject */ |
23 | 23 | ||
24 | // known translations for common png keys | 24 | // known translations for common png keys |
25 | static const char* knownTranslations[] | 25 | static const char* knownTranslations[] |
26 | #ifdef __GNUC__ | 26 | #ifdef __GNUC__ |
27 | __attribute__((unused)) | 27 | __attribute__((unused)) |
28 | #endif | 28 | #endif |
29 | = { | 29 | = { |
30 | QT_TR_NOOP("Title"), | 30 | QT_TR_NOOP("Title"), |
31 | QT_TR_NOOP("Author"), | 31 | QT_TR_NOOP("Author"), |
32 | QT_TR_NOOP("Description"), | 32 | QT_TR_NOOP("Description"), |
33 | QT_TR_NOOP("Copyright"), | 33 | QT_TR_NOOP("Copyright"), |
34 | QT_TR_NOOP("Creation Time"), | 34 | QT_TR_NOOP("Creation Time"), |
35 | QT_TR_NOOP("Software"), | 35 | QT_TR_NOOP("Software"), |
36 | QT_TR_NOOP("Disclaimer"), | 36 | QT_TR_NOOP("Disclaimer"), |
37 | QT_TR_NOOP("Warning"), | 37 | QT_TR_NOOP("Warning"), |
38 | QT_TR_NOOP("Source"), | 38 | QT_TR_NOOP("Source"), |
39 | QT_TR_NOOP("Comment") | 39 | QT_TR_NOOP("Comment") |
40 | }; | 40 | }; |
41 | 41 | ||
42 | // and for the colors | 42 | // and for the colors |
43 | static const char* colors[] = { | 43 | static const char* colors[] = { |
44 | QT_TR_NOOP("Grayscale"), | 44 | QT_TR_NOOP("Grayscale"), |
45 | QT_TR_NOOP("Unknown"), | 45 | QT_TR_NOOP("Unknown"), |
46 | QT_TR_NOOP("RGB"), | 46 | QT_TR_NOOP("RGB"), |
47 | QT_TR_NOOP("Palette"), | 47 | QT_TR_NOOP("Palette"), |
48 | QT_TR_NOOP("Grayscale/Alpha"), | 48 | QT_TR_NOOP("Grayscale/Alpha"), |
49 | QT_TR_NOOP("Unknown"), | 49 | QT_TR_NOOP("Unknown"), |
50 | QT_TR_NOOP("RGB/Alpha") | 50 | QT_TR_NOOP("RGB/Alpha") |
51 | }; | 51 | }; |
52 | 52 | ||
53 | // and compressions | 53 | // and compressions |
54 | static const char* compressions[] = | 54 | static const char* compressions[] = |
55 | { | 55 | { |
56 | QT_TR_NOOP("Deflate") | 56 | QT_TR_NOOP("Deflate") |
57 | }; | 57 | }; |
58 | 58 | ||
59 | // interlaced modes | 59 | // interlaced modes |
60 | static const char* interlaceModes[] = { | 60 | static const char* interlaceModes[] = { |
61 | QT_TR_NOOP("None"), | 61 | QT_TR_NOOP("None"), |
62 | QT_TR_NOOP("Adam7") | 62 | QT_TR_NOOP("Adam7") |
63 | }; | 63 | }; |
64 | 64 | ||
65 | 65 | ||
66 | static void read_comment( const QString& inf, | 66 | static void read_comment( const QString& inf, |
67 | bool readComments, QString& str ) { | 67 | bool readComments, QString& str ) { |
68 | QFile f(inf); | 68 | QFile f(inf); |
69 | f.open(IO_ReadOnly); | 69 | if (!f.exists()) return; |
70 | if (!f.open(IO_ReadOnly)) return; | ||
70 | 71 | ||
71 | if (f.size() < 26) return; | 72 | if (f.size() < 26) return; |
72 | // the technical group will be read from the first 26 bytes. If the file | 73 | // the technical group will be read from the first 26 bytes. If the file |
73 | // is smaller, we can't even read this. | 74 | // is smaller, we can't even read this. |
74 | 75 | ||
75 | uchar *data = new uchar[f.size()+1]; | 76 | uchar *data = new uchar[f.size()+1]; |
76 | f.readBlock(reinterpret_cast<char*>(data), f.size()); | 77 | f.readBlock(reinterpret_cast<char*>(data), f.size()); |
77 | data[f.size()]='\n'; | 78 | data[f.size()]='\n'; |
78 | 79 | ||
79 | // find the start | 80 | // find the start |
80 | if (data[0] == 137 && data[1] == 80 && data[2] == 78 && data[3] == 71 && | 81 | if (data[0] == 137 && data[1] == 80 && data[2] == 78 && data[3] == 71 && |
81 | data[4] == 13 && data[5] == 10 && data[6] == 26 && data[7] == 10 ) | 82 | data[4] == 13 && data[5] == 10 && data[6] == 26 && data[7] == 10 ) |
82 | { | 83 | { |
83 | // ok | 84 | // ok |
84 | // the IHDR chunk should be the first | 85 | // the IHDR chunk should be the first |
85 | if (!strncmp((char*)&data[12], "IHDR", 4)) | 86 | if (!strncmp((char*)&data[12], "IHDR", 4)) |
86 | { | 87 | { |
87 | // we found it, get the dimensions | 88 | // we found it, get the dimensions |
88 | ulong x,y; | 89 | ulong x,y; |
89 | x = (data[16]<<24) + (data[17]<<16) + (data[18]<<8) + data[19]; | 90 | x = (data[16]<<24) + (data[17]<<16) + (data[18]<<8) + data[19]; |
90 | y = (data[20]<<24) + (data[21]<<16) + (data[22]<<8) + data[23]; | 91 | y = (data[20]<<24) + (data[21]<<16) + (data[22]<<8) + data[23]; |
91 | 92 | ||
92 | uint type = data[25]; | 93 | uint type = data[25]; |
93 | uint bpp = data[24]; | 94 | uint bpp = data[24]; |
94 | 95 | ||
95 | // the bpp are only per channel, so we need to multiply the with | 96 | // the bpp are only per channel, so we need to multiply the with |
96 | // the channel count | 97 | // the channel count |
97 | switch (type) | 98 | switch (type) |
98 | { | 99 | { |
99 | case 0: break; // Grayscale | 100 | case 0: break; // Grayscale |
100 | case 2: bpp *= 3; break; // RGB | 101 | case 2: bpp *= 3; break; // RGB |
101 | case 3: break; // palette | 102 | case 3: break; // palette |
102 | case 4: bpp *= 2; break; // grayscale w. alpha | 103 | case 4: bpp *= 2; break; // grayscale w. alpha |
103 | case 6: bpp *= 4; break; // RGBA | 104 | case 6: bpp *= 4; break; // RGBA |
104 | 105 | ||
105 | default: // we don't get any sensible value here | 106 | default: // we don't get any sensible value here |
106 | bpp = 0; | 107 | bpp = 0; |
107 | } | 108 | } |
108 | 109 | ||
109 | 110 | ||
110 | str = QObject::tr("Dimensions: %1x%2\n" ).arg(x).arg(y); | 111 | str = QObject::tr("Dimensions: %1x%2\n" ).arg(x).arg(y); |
111 | str += QObject::tr("Depth: %1\n" ).arg(bpp); | 112 | str += QObject::tr("Depth: %1\n" ).arg(bpp); |
112 | str += QObject::tr("ColorMode: %1\n").arg( | 113 | str += QObject::tr("ColorMode: %1\n").arg( |
113 | (type < sizeof(colors)/sizeof(colors[0])) | 114 | (type < sizeof(colors)/sizeof(colors[0])) |
114 | ? QObject::tr(colors[data[25]]) : QObject::tr("Unknown") ); | 115 | ? QObject::tr(colors[data[25]]) : QObject::tr("Unknown") ); |
115 | 116 | ||
116 | str += QObject::tr("Compression: %1\n").arg( | 117 | str += QObject::tr("Compression: %1\n").arg( |
117 | (data[26] < sizeof(compressions)/sizeof(compressions[0])) | 118 | (data[26] < sizeof(compressions)/sizeof(compressions[0])) |
118 | ? QObject::tr(compressions[data[26]]) : QObject::tr("Unknown") ); | 119 | ? QObject::tr(compressions[data[26]]) : QObject::tr("Unknown") ); |
119 | 120 | ||
120 | str += QObject::tr("InterlaceMode: %1\n" ).arg( | 121 | str += QObject::tr("InterlaceMode: %1\n" ).arg( |
121 | (data[28] < sizeof(interlaceModes)/sizeof(interlaceModes[0])) | 122 | (data[28] < sizeof(interlaceModes)/sizeof(interlaceModes[0])) |
122 | ? QObject::tr(interlaceModes[data[28]]) : QObject::tr("Unknown")); | 123 | ? QObject::tr(interlaceModes[data[28]]) : QObject::tr("Unknown")); |
123 | } | 124 | } |
124 | 125 | ||
125 | if ( readComments ) { | 126 | if ( readComments ) { |
126 | uint index = 8; | 127 | uint index = 8; |
127 | index += CHUNK_SIZE(data, index) + CHUNK_HEADER_SIZE; | 128 | index += CHUNK_SIZE(data, index) + CHUNK_HEADER_SIZE; |
128 | 129 | ||
129 | while(index<f.size()-12) | 130 | while(index<f.size()-12) |
130 | { | 131 | { |
131 | while (index < f.size() - 12 && | 132 | while (index < f.size() - 12 && |
132 | strncmp((char*)CHUNK_TYPE(data,index), "tEXt", 4)) | 133 | strncmp((char*)CHUNK_TYPE(data,index), "tEXt", 4)) |
133 | { | 134 | { |