| 1110 | |
| 1111 | |
| 1112 | int Image::byteCount() |
| 1113 | // ---------------------------------------------------------------------------- |
| 1114 | // The size in bytes of the image |
| 1115 | // ---------------------------------------------------------------------------- |
| 1116 | { |
| 1117 | if (compressed) |
| 1118 | { |
| 1119 | Q_ASSERT(sz); |
| 1120 | return sz; |
| 1121 | } |
| 1122 | return raw.byteCount(); |
| 1123 | } |
| 1124 | |
| 1125 | |
| 1126 | void Image::load(const QString &path, bool trycomp) |