Compare commits

...

7 Commits

Author SHA1 Message Date
5b42b3b787 Upgrade ECM version requirement to 1.0.0 after all. 2014-07-01 20:16:27 +02:00
f98e508da4 Upgrade ECM and KF5 version requirements. 2014-07-01 15:32:05 +02:00
a92540f00d Upgrade ECM and KF5 version requirements. 2014-06-01 12:40:39 +02:00
2ec0d5abc6 Fix a compiler warning about signed/unsigned comparisons
The "+ 1" was causing an unsigned value to be cast to a signed value,
which was then compared with an unsigned value, causing the warning.
Making the constant unsigned fixes this.
2014-05-30 16:47:19 +01:00
cca4c545a4 Hide documented internal classes from Doxygen 2014-05-30 16:40:05 +01:00
87b545f9ed Make sure Doxygen does not interpret license headers as dox
The extra *s were confusing it.
2014-05-30 16:38:45 +01:00
1132abbf67 Update metainfo.yaml's short description and platform notes 2014-05-16 17:07:10 +01:00
10 changed files with 19 additions and 12 deletions

View File

@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12)
project(KImageFormats) project(KImageFormats)
find_package(ECM 0.0.13 REQUIRED NO_MODULE) find_package(ECM 1.0.0 REQUIRED NO_MODULE)
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})

View File

@ -1,9 +1,12 @@
maintainer: alexmerry maintainer: alexmerry
description: Addons to QtImageFormats description: Plugins to allow QImage to support extra file formats
tier: 1 tier: 1
type: functional type: functional
platforms: platforms:
- name: All - name: Linux
- name: MacOSX
- name: Windows
note: No EPS support on Windows
portingAid: false portingAid: false
deprecated: false deprecated: false
release: true release: true

View File

@ -1,4 +1,4 @@
/** /*
* QImageIO Routines to read/write EPS images. * QImageIO Routines to read/write EPS images.
* copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de> * copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de>
* Copyright (c) 2013 Alex Merry <alex.merry@kdemail.net> * Copyright (c) 2013 Alex Merry <alex.merry@kdemail.net>

View File

@ -1,4 +1,4 @@
/** /*
* QImageIO Routines to read/write EPS images. * QImageIO Routines to read/write EPS images.
* copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de> * copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de>
* *

View File

@ -1,5 +1,5 @@
/** /*
* KImageIO Routines to read (and perhaps in the future, write) images * KImageIO Routines to read (and perhaps in the future, write) images
* in the high dynamic range EXR format. * in the high dynamic range EXR format.
* Copyright (c) 2003, Brad Hards <bradh@frogmouth.net> * Copyright (c) 2003, Brad Hards <bradh@frogmouth.net>

View File

@ -1,4 +1,4 @@
/** /*
* QImageIO Routines to read (and perhaps in the future, write) images * QImageIO Routines to read (and perhaps in the future, write) images
* in the high definition EXR format. * in the high definition EXR format.
* *

View File

@ -1,4 +1,4 @@
/** /*
* QImageIO Routines to read/write JPEG2000 images. * QImageIO Routines to read/write JPEG2000 images.
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de> * copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
* *

View File

@ -1,4 +1,4 @@
/** /*
* QImageIO Routines to read/write JPEG2000 images. * QImageIO Routines to read/write JPEG2000 images.
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de> * copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
* *

View File

@ -1,4 +1,4 @@
/** /*
* Softimage PIC support for QImage * Softimage PIC support for QImage
* Copyright 1998 Halfdan Ingvarsson * Copyright 1998 Halfdan Ingvarsson
* Copyright 2007 Ruben Lopez <r.lopez@bren.es> * Copyright 2007 Ruben Lopez <r.lopez@bren.es>
@ -340,7 +340,7 @@ static void encodeMixedRLEData(QDataStream &stream, const Item *data, unsigned l
chunkLength = 1; chunkLength = 1;
chunkEnd = chunkStart + 1; chunkEnd = chunkStart + 1;
while (chunkLength < maxChunk && while (chunkLength < maxChunk &&
(chunkLength + 1 == maxChunk || (chunkLength + 1u == maxChunk ||
!itemsEqual(*chunkEnd, *(chunkEnd+1)))) !itemsEqual(*chunkEnd, *(chunkEnd+1))))
{ {
++chunkEnd; ++chunkEnd;

View File

@ -1,4 +1,4 @@
/** /*
* PIC_RW - Qt PIC Support * PIC_RW - Qt PIC Support
* Copyright (C) 2007 Ruben Lopez <r.lopez@bren.es> * Copyright (C) 2007 Ruben Lopez <r.lopez@bren.es>
* *
@ -60,6 +60,8 @@ enum PicChannelCode {
/** /**
* The header for a SoftImage PIC file. * The header for a SoftImage PIC file.
*
* @private
*/ */
struct PicHeader { struct PicHeader {
/** /**
@ -111,6 +113,8 @@ struct PicHeader {
/** /**
* Describes a channel in a SoftImage PIC file. * Describes a channel in a SoftImage PIC file.
*
* @private
*/ */
struct PicChannel { struct PicChannel {
quint8 size; /**< Bits per component per pixel. */ quint8 size; /**< Bits per component per pixel. */