mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-14 19:04:17 -04:00
Compare commits
7 Commits
v4.99.0-rc
...
v5.0.0
Author | SHA1 | Date | |
---|---|---|---|
5b42b3b787 | |||
f98e508da4 | |||
a92540f00d | |||
2ec0d5abc6 | |||
cca4c545a4 | |||
87b545f9ed | |||
1132abbf67 |
@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12)
|
||||
|
||||
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})
|
||||
|
||||
|
@ -1,9 +1,12 @@
|
||||
maintainer: alexmerry
|
||||
description: Addons to QtImageFormats
|
||||
description: Plugins to allow QImage to support extra file formats
|
||||
tier: 1
|
||||
type: functional
|
||||
platforms:
|
||||
- name: All
|
||||
- name: Linux
|
||||
- name: MacOSX
|
||||
- name: Windows
|
||||
note: No EPS support on Windows
|
||||
portingAid: false
|
||||
deprecated: false
|
||||
release: true
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* QImageIO Routines to read/write EPS images.
|
||||
* copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de>
|
||||
* Copyright (c) 2013 Alex Merry <alex.merry@kdemail.net>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* QImageIO Routines to read/write EPS images.
|
||||
* copyright (c) 1998 Dirk Schoenberger <dirk.schoenberger@freenet.de>
|
||||
*
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
/**
|
||||
/*
|
||||
* KImageIO Routines to read (and perhaps in the future, write) images
|
||||
* in the high dynamic range EXR format.
|
||||
* Copyright (c) 2003, Brad Hards <bradh@frogmouth.net>
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* QImageIO Routines to read (and perhaps in the future, write) images
|
||||
* in the high definition EXR format.
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* QImageIO Routines to read/write JPEG2000 images.
|
||||
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* QImageIO Routines to read/write JPEG2000 images.
|
||||
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
|
||||
*
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* Softimage PIC support for QImage
|
||||
* Copyright 1998 Halfdan Ingvarsson
|
||||
* Copyright 2007 Ruben Lopez <r.lopez@bren.es>
|
||||
@ -340,7 +340,7 @@ static void encodeMixedRLEData(QDataStream &stream, const Item *data, unsigned l
|
||||
chunkLength = 1;
|
||||
chunkEnd = chunkStart + 1;
|
||||
while (chunkLength < maxChunk &&
|
||||
(chunkLength + 1 == maxChunk ||
|
||||
(chunkLength + 1u == maxChunk ||
|
||||
!itemsEqual(*chunkEnd, *(chunkEnd+1))))
|
||||
{
|
||||
++chunkEnd;
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/*
|
||||
* PIC_RW - Qt PIC Support
|
||||
* Copyright (C) 2007 Ruben Lopez <r.lopez@bren.es>
|
||||
*
|
||||
@ -60,6 +60,8 @@ enum PicChannelCode {
|
||||
|
||||
/**
|
||||
* The header for a SoftImage PIC file.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
struct PicHeader {
|
||||
/**
|
||||
@ -111,6 +113,8 @@ struct PicHeader {
|
||||
|
||||
/**
|
||||
* Describes a channel in a SoftImage PIC file.
|
||||
*
|
||||
* @private
|
||||
*/
|
||||
struct PicChannel {
|
||||
quint8 size; /**< Bits per component per pixel. */
|
||||
|
Reference in New Issue
Block a user