mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-15 11:14:18 -04:00
Compare commits
77 Commits
Author | SHA1 | Date | |
---|---|---|---|
beaf20bd4a | |||
8ac949d459 | |||
4c0c6c8d60 | |||
f485719012 | |||
1db1b94657 | |||
98c65a438d | |||
167967a145 | |||
17239a7ea6 | |||
118d262bec | |||
67a84f459d | |||
de2b942b33 | |||
813a7bdddb | |||
a4d1f4db1d | |||
29d090f078 | |||
19f33239e7 | |||
4668fbbcdc | |||
698ba297d3 | |||
3a9bafdbbe | |||
e5b226e804 | |||
871d0f976f | |||
7aa5333a3f | |||
aeabd92eea | |||
64e719f329 | |||
eef855b146 | |||
04e2ee01cb | |||
7f2c44add4 | |||
ca67a8f342 | |||
23759d0aef | |||
bfc02ddfe3 | |||
a65b504a44 | |||
78aeee7d36 | |||
a2d0e43889 | |||
e0bd85cbc3 | |||
f16485a872 | |||
e3afec9e75 | |||
b040cf0f96 | |||
7be2757c36 | |||
a8562a8471 | |||
252b639638 | |||
b0c8c40dec | |||
1afb7681b7 | |||
740fe5df0e | |||
e4aa067bd2 | |||
9f77675d91 | |||
8a8ef69b7c | |||
95e14f8f60 | |||
1fca298a20 | |||
09b1ac5a16 | |||
7f852d241a | |||
5fdcdff6e3 | |||
60b5866b77 | |||
f42c1b7423 | |||
ede3a4a3f3 | |||
1d2aed54fa | |||
b019a2a57e | |||
a4de98aa4f | |||
172c494cff | |||
e8da107189 | |||
0ae43f7d35 | |||
36b67d38bb | |||
c1164e4eda | |||
8630653eff | |||
d4009490c5 | |||
baf894ba19 | |||
5168d097b5 | |||
6934d54417 | |||
5d7ef7c38e | |||
a68bfe27ff | |||
9304510ee3 | |||
cc219211bb | |||
f2adcb81d1 | |||
814c7a2b30 | |||
d7f457a124 | |||
69c4a4b84a | |||
e3473a53cf | |||
4a54da668a | |||
e5fce91de6 |
3
.arcconfig
Normal file
3
.arcconfig
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"phabricator.uri" : "https://phabricator.kde.org/"
|
||||||
|
}
|
@ -1,5 +0,0 @@
|
|||||||
REVIEWBOARD_URL = "https://git.reviewboard.kde.org"
|
|
||||||
REPOSITORY = 'git://anongit.kde.org/kimageformats'
|
|
||||||
BRANCH = 'master'
|
|
||||||
TARGET_GROUPS = 'kdeframeworks'
|
|
||||||
TARGET_PEOPLE = 'alexmerry'
|
|
@ -1,9 +1,9 @@
|
|||||||
cmake_minimum_required(VERSION 2.8.12)
|
cmake_minimum_required(VERSION 3.0)
|
||||||
|
|
||||||
project(KImageFormats)
|
project(KImageFormats)
|
||||||
|
|
||||||
include(FeatureSummary)
|
include(FeatureSummary)
|
||||||
find_package(ECM 5.13.0 NO_MODULE)
|
find_package(ECM 5.52.0 NO_MODULE)
|
||||||
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules")
|
set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules")
|
||||||
feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||||
|
|
||||||
@ -11,15 +11,21 @@ feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKA
|
|||||||
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
|
||||||
|
|
||||||
include(KDEInstallDirs)
|
include(KDEInstallDirs)
|
||||||
include(KDEFrameworkCompilerSettings)
|
include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
|
||||||
include(KDECMakeSettings)
|
include(KDECMakeSettings)
|
||||||
|
|
||||||
|
|
||||||
include(CheckIncludeFiles)
|
include(CheckIncludeFiles)
|
||||||
|
|
||||||
set(REQUIRED_QT_VERSION 5.3.0)
|
set(REQUIRED_QT_VERSION 5.8.0)
|
||||||
find_package(Qt5Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
|
find_package(Qt5Gui ${REQUIRED_QT_VERSION} REQUIRED NO_MODULE)
|
||||||
|
|
||||||
|
find_package(KF5Archive)
|
||||||
|
set_package_properties(KF5Archive PROPERTIES
|
||||||
|
TYPE OPTIONAL
|
||||||
|
PURPOSE "Required for the QImage plugin for Krita and OpenRaster images"
|
||||||
|
)
|
||||||
|
|
||||||
# EPS support depends on the gs utility; non-UNIX systems are unlikely to have
|
# EPS support depends on the gs utility; non-UNIX systems are unlikely to have
|
||||||
# this available in PATH
|
# this available in PATH
|
||||||
set(BUILD_EPS_PLUGIN FALSE)
|
set(BUILD_EPS_PLUGIN FALSE)
|
||||||
@ -34,18 +40,6 @@ if (UNIX)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# QtImageFormats 5.3 comes with a JPEG-2000 plugin; don't duplicate it here
|
|
||||||
# TODO: remove our JPEG-2000 plugin when we depend on Qt 5.3.
|
|
||||||
if (Qt5Gui_VERSION VERSION_LESS 5.3.0)
|
|
||||||
find_package(Jasper)
|
|
||||||
set_package_properties(Jasper PROPERTIES
|
|
||||||
DESCRIPTION "A library for handling JPEG-2000 images"
|
|
||||||
PURPOSE "Required for the QImage plugin for JPEG-2000 images"
|
|
||||||
URL "http://www.ece.uvic.ca/~mdadams/jasper"
|
|
||||||
TYPE OPTIONAL
|
|
||||||
)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
find_package(OpenEXR)
|
find_package(OpenEXR)
|
||||||
set_package_properties(OpenEXR PROPERTIES
|
set_package_properties(OpenEXR PROPERTIES
|
||||||
TYPE OPTIONAL
|
TYPE OPTIONAL
|
||||||
|
@ -13,7 +13,6 @@ image formats.
|
|||||||
|
|
||||||
The following image formats have read-only support:
|
The following image formats have read-only support:
|
||||||
|
|
||||||
- DirectDraw Surface (dds)
|
|
||||||
- Gimp (xcf)
|
- Gimp (xcf)
|
||||||
- OpenEXR (exr)
|
- OpenEXR (exr)
|
||||||
- Photoshop documents (psd)
|
- Photoshop documents (psd)
|
||||||
@ -22,7 +21,6 @@ The following image formats have read-only support:
|
|||||||
The following image formats have read and write support:
|
The following image formats have read and write support:
|
||||||
|
|
||||||
- Encapsulated PostScript (eps)
|
- Encapsulated PostScript (eps)
|
||||||
- JPEG-2000 (jp2)
|
|
||||||
- Personal Computer Exchange (pcx)
|
- Personal Computer Exchange (pcx)
|
||||||
- SGI images (rgb, rgba, sgi, bw)
|
- SGI images (rgb, rgba, sgi, bw)
|
||||||
- Softimage PIC (pic)
|
- Softimage PIC (pic)
|
||||||
|
@ -61,6 +61,14 @@ kimageformats_read_tests(
|
|||||||
rgb
|
rgb
|
||||||
tga
|
tga
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (KF5Archive_FOUND)
|
||||||
|
kimageformats_read_tests(
|
||||||
|
kra
|
||||||
|
ora
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
# Allow some fuzziness when reading this formats, to allow for
|
# Allow some fuzziness when reading this formats, to allow for
|
||||||
# rounding errors (eg: in alpha blending).
|
# rounding errors (eg: in alpha blending).
|
||||||
kimageformats_read_tests(FUZZ 1
|
kimageformats_read_tests(FUZZ 1
|
||||||
@ -86,22 +94,10 @@ kimageformats_write_tests(
|
|||||||
# kimageformats_read_tests(eps)
|
# kimageformats_read_tests(eps)
|
||||||
# kimageformats_write_tests(eps)
|
# kimageformats_write_tests(eps)
|
||||||
#endif()
|
#endif()
|
||||||
if (JASPER_FOUND)
|
|
||||||
# FIXME: when we read JPEG2000 files on different architectures
|
|
||||||
# (specifically x86_64 and i386), we get off-by-one errors. The
|
|
||||||
# jasper utility does not have the same problem, so it is not a
|
|
||||||
# problem inherent in the jasper library. For now, we just allow
|
|
||||||
# a little fuzziness to make sure it does not get any worse (being
|
|
||||||
# off by one in an image value is not noticable to the human eye,
|
|
||||||
# so it is not a release-blocking issue).
|
|
||||||
kimageformats_read_tests(FUZZ 1 jp2)
|
|
||||||
kimageformats_write_tests(jp2)
|
|
||||||
endif()
|
|
||||||
if (OpenEXR_FOUND)
|
if (OpenEXR_FOUND)
|
||||||
# FIXME: OpenEXR tests
|
# FIXME: OpenEXR tests
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
find_package(Qt5Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
|
find_package(Qt5Test ${REQUIRED_QT_VERSION} CONFIG QUIET)
|
||||||
|
|
||||||
if(NOT Qt5Test_FOUND)
|
if(NOT Qt5Test_FOUND)
|
||||||
|
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 663 B |
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 510 B |
BIN
autotests/read/kra/src.kra
Normal file
BIN
autotests/read/kra/src.kra
Normal file
Binary file not shown.
BIN
autotests/read/kra/src.png
Normal file
BIN
autotests/read/kra/src.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
autotests/read/ora/src.ora
Normal file
BIN
autotests/read/ora/src.ora
Normal file
Binary file not shown.
BIN
autotests/read/ora/src.png
Normal file
BIN
autotests/read/ora/src.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
@ -129,7 +129,7 @@ int main(int argc, char ** argv)
|
|||||||
foreach (QFileInfo fi, imgdir.entryInfoList()) {
|
foreach (QFileInfo fi, imgdir.entryInfoList()) {
|
||||||
int suffixPos = fi.filePath().count() - suffix.count();
|
int suffixPos = fi.filePath().count() - suffix.count();
|
||||||
QString inputfile = fi.filePath();
|
QString inputfile = fi.filePath();
|
||||||
QString expfile = fi.filePath().replace(suffixPos, suffix.count(), "png");
|
QString expfile = fi.filePath().replace(suffixPos, suffix.count(), QStringLiteral("png"));
|
||||||
QString expfilename = QFileInfo(expfile).fileName();
|
QString expfilename = QFileInfo(expfile).fileName();
|
||||||
|
|
||||||
QImageReader inputReader(inputfile, format.constData());
|
QImageReader inputReader(inputfile, format.constData());
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -75,7 +75,7 @@ int main(int argc, char ** argv)
|
|||||||
|
|
||||||
foreach (QFileInfo fi, imgdir.entryInfoList()) {
|
foreach (QFileInfo fi, imgdir.entryInfoList()) {
|
||||||
int suffixPos = fi.filePath().count() - suffix.count();
|
int suffixPos = fi.filePath().count() - suffix.count();
|
||||||
QString pngfile = fi.filePath().replace(suffixPos, suffix.count(), "png");
|
QString pngfile = fi.filePath().replace(suffixPos, suffix.count(), QStringLiteral("png"));
|
||||||
QString pngfilename = QFileInfo(pngfile).fileName();
|
QString pngfilename = QFileInfo(pngfile).fileName();
|
||||||
|
|
||||||
QImageReader pngReader(pngfile, "png");
|
QImageReader pngReader(pngfile, "png");
|
||||||
|
@ -1,12 +1,18 @@
|
|||||||
maintainer: alexmerry
|
maintainer: alexmerry
|
||||||
description: Image format plugins for Qt
|
description: Image format plugins for Qt
|
||||||
tier: 1
|
tier: 2
|
||||||
type: functional
|
type: functional
|
||||||
platforms:
|
platforms:
|
||||||
- name: Linux
|
- name: Linux
|
||||||
|
- name: FreeBSD
|
||||||
- name: MacOSX
|
- name: MacOSX
|
||||||
- name: Windows
|
- name: Windows
|
||||||
note: No EPS support on Windows
|
note: No EPS support on Windows
|
||||||
|
- name: Android
|
||||||
portingAid: false
|
portingAid: false
|
||||||
deprecated: false
|
deprecated: false
|
||||||
release: true
|
release: true
|
||||||
|
|
||||||
|
public_lib: true
|
||||||
|
group: Frameworks
|
||||||
|
subgroup: Tier 2
|
||||||
|
@ -2,111 +2,100 @@
|
|||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
if (Qt5Gui_VERSION VERSION_LESS 5.3.0)
|
function(kimageformats_add_plugin plugin)
|
||||||
add_library(kimg_dds MODULE dds.cpp)
|
set(options)
|
||||||
target_link_libraries(kimg_dds Qt5::Gui)
|
set(oneValueArgs JSON)
|
||||||
|
set(multiValueArgs SOURCES)
|
||||||
install(TARGETS kimg_dds DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
cmake_parse_arguments(KIF_ADD_PLUGIN "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||||
install(FILES dds.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
if(NOT KIF_ADD_PLUGIN_SOURCES)
|
||||||
else()
|
message(FATAL_ERROR "kimageformats_add_plugin called without SOURCES parameter")
|
||||||
install(FILES dds-qt.desktop RENAME dds.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
|
||||||
endif()
|
endif()
|
||||||
|
get_filename_component(json "${KIF_ADD_PLUGIN_JSON}" REALPATH)
|
||||||
|
if(NOT KIF_ADD_PLUGIN_JSON OR NOT EXISTS ${json})
|
||||||
|
message(FATAL_ERROR "JSON file doesn't exist: ${json}")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_library(${plugin} MODULE ${KIF_ADD_PLUGIN_SOURCES})
|
||||||
|
set_property(TARGET ${plugin} APPEND PROPERTY AUTOGEN_TARGET_DEPENDS ${json})
|
||||||
|
set_target_properties(${plugin} PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/imageformats")
|
||||||
|
target_link_libraries(${plugin} Qt5::Gui)
|
||||||
|
install(TARGETS ${plugin} DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats)
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
##################################
|
||||||
|
|
||||||
|
install(FILES dds-qt.desktop RENAME dds.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
if (BUILD_EPS_PLUGIN)
|
if (BUILD_EPS_PLUGIN)
|
||||||
if (Qt5PrintSupport_FOUND)
|
if (Qt5PrintSupport_FOUND)
|
||||||
add_library(kimg_eps MODULE eps.cpp)
|
kimageformats_add_plugin(kimg_eps JSON "eps.json" SOURCES eps.cpp)
|
||||||
target_link_libraries(kimg_eps Qt5::Gui Qt5::PrintSupport)
|
target_link_libraries(kimg_eps Qt5::PrintSupport)
|
||||||
|
|
||||||
install(TARGETS kimg_eps DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES eps.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES eps.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
check_include_files(sys/types.h HAVE_SYS_TYPES_H)
|
|
||||||
check_include_files(stdint.h HAVE_STDINT_H)
|
|
||||||
configure_file(config-jp2.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-jp2.h)
|
|
||||||
|
|
||||||
if(JASPER_FOUND)
|
|
||||||
add_library(kimg_jp2 MODULE jp2.cpp)
|
|
||||||
target_compile_options(kimg_jp2 PRIVATE ${JASPER_DEFINITIONS})
|
|
||||||
target_include_directories(kimg_jp2 PRIVATE ${JASPER_INCLUDE_DIR})
|
|
||||||
target_link_libraries(kimg_jp2 Qt5::Gui ${JASPER_LIBRARIES})
|
|
||||||
|
|
||||||
install(TARGETS kimg_jp2 DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES jp2.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
|
||||||
elseif (NOT Qt5Gui_VERSION VERSION_LESS 5.3.0)
|
|
||||||
# need this for Qt's version of the plugin
|
# need this for Qt's version of the plugin
|
||||||
install(FILES jp2.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES jp2.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
endif()
|
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
if(OpenEXR_FOUND)
|
if(OpenEXR_FOUND)
|
||||||
add_library(kimg_exr MODULE exr.cpp)
|
kimageformats_add_plugin(kimg_exr JSON "exr.json" SOURCES exr.cpp)
|
||||||
target_link_libraries(kimg_exr Qt5::Gui OpenEXR::IlmImf)
|
target_link_libraries(kimg_exr OpenEXR::IlmImf)
|
||||||
kde_target_enable_exceptions(kimg_exr PRIVATE)
|
kde_target_enable_exceptions(kimg_exr PRIVATE)
|
||||||
|
|
||||||
install(TARGETS kimg_exr DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES exr.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES exr.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_pcx MODULE pcx.cpp)
|
kimageformats_add_plugin(kimg_pcx JSON "pcx.json" SOURCES pcx.cpp)
|
||||||
target_link_libraries(kimg_pcx Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_pcx DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES pcx.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES pcx.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_pic MODULE pic.cpp)
|
kimageformats_add_plugin(kimg_pic JSON "pic.json" SOURCES pic.cpp)
|
||||||
target_link_libraries(kimg_pic Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_pic DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES pic.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES pic.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_psd MODULE psd.cpp)
|
kimageformats_add_plugin(kimg_psd JSON "psd.json" SOURCES psd.cpp)
|
||||||
target_link_libraries(kimg_psd Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_psd DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES psd.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES psd.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_ras MODULE ras.cpp)
|
kimageformats_add_plugin(kimg_ras JSON "ras.json" SOURCES ras.cpp)
|
||||||
target_link_libraries(kimg_ras Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_ras DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES ras.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES ras.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_rgb MODULE rgb.cpp)
|
kimageformats_add_plugin(kimg_rgb JSON "rgb.json" SOURCES rgb.cpp)
|
||||||
target_link_libraries(kimg_rgb Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_rgb DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES rgb.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES rgb.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_tga MODULE tga.cpp)
|
kimageformats_add_plugin(kimg_tga JSON "tga.json" SOURCES tga.cpp)
|
||||||
target_link_libraries(kimg_tga Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_tga DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES tga.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES tga.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
add_library(kimg_xcf MODULE xcf.cpp)
|
kimageformats_add_plugin(kimg_xcf JSON "xcf.json" SOURCES xcf.cpp)
|
||||||
target_link_libraries(kimg_xcf Qt5::Gui)
|
|
||||||
|
|
||||||
install(TARGETS kimg_xcf DESTINATION ${KDE_INSTALL_QTPLUGINDIR}/imageformats/)
|
|
||||||
install(FILES xcf.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
install(FILES xcf.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
|
##################################
|
||||||
|
|
||||||
|
if (KF5Archive_FOUND)
|
||||||
|
|
||||||
|
kimageformats_add_plugin(kimg_kra JSON "kra.json" SOURCES kra.cpp)
|
||||||
|
target_link_libraries(kimg_kra KF5::Archive)
|
||||||
|
install(FILES kra.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
|
kimageformats_add_plugin(kimg_ora JSON "ora.json" SOURCES ora.cpp)
|
||||||
|
target_link_libraries(kimg_ora KF5::Archive)
|
||||||
|
install(FILES ora.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR}/qimageioplugins/)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
#cmakedefine01 HAVE_STDINT_H
|
|
||||||
#cmakedefine01 HAVE_SYS_TYPES_H
|
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"Keys": [ "dds" ],
|
|
||||||
"MimeTypes": [ "image/x-dds" ]
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
/* This file is part of the KDE project
|
|
||||||
Copyright (C) 2003 Ignacio Castaño <castano@ludicon.com>
|
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the Lesser GNU General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2 of the License, or (at your option) any later version.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef KIMG_DDS_H
|
|
||||||
#define KIMG_DDS_H
|
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
|
||||||
|
|
||||||
class DDSHandler : public QImageIOHandler
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
DDSHandler();
|
|
||||||
|
|
||||||
virtual bool canRead() const;
|
|
||||||
virtual bool read(QImage *image);
|
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
|
||||||
};
|
|
||||||
|
|
||||||
class DDSPlugin : public QImageIOPlugin
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "dds.json")
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual Capabilities capabilities(QIODevice *device, const QByteArray &format) const;
|
|
||||||
virtual QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // KIMG_DDS_H
|
|
||||||
|
|
@ -8,21 +8,16 @@
|
|||||||
*/
|
*/
|
||||||
#include "eps_p.h"
|
#include "eps_p.h"
|
||||||
|
|
||||||
#include <QDebug>
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QImageReader>
|
#include <QImageReader>
|
||||||
#include <QLoggingCategory>
|
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QPrinter>
|
#include <QPrinter>
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
#include <QTemporaryFile>
|
#include <QTemporaryFile>
|
||||||
|
#include <QCoreApplication>
|
||||||
|
|
||||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0)
|
|
||||||
// logging category for this framework, default: log stuff >= warning
|
// logging category for this framework, default: log stuff >= warning
|
||||||
Q_LOGGING_CATEGORY(EPSPLUGIN, "epsplugin", QtWarningMsg)
|
Q_LOGGING_CATEGORY(EPSPLUGIN, "epsplugin", QtWarningMsg)
|
||||||
#else
|
|
||||||
Q_LOGGING_CATEGORY(EPSPLUGIN, "epsplugin")
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//#define EPS_PERFORMANCE_DEBUG 1
|
//#define EPS_PERFORMANCE_DEBUG 1
|
||||||
|
|
||||||
@ -162,7 +157,7 @@ bool EPSHandler::read(QImage *image)
|
|||||||
|
|
||||||
QTemporaryFile tmpFile;
|
QTemporaryFile tmpFile;
|
||||||
if (!tmpFile.open()) {
|
if (!tmpFile.open()) {
|
||||||
qWarning() << "Could not create the temporary file" << tmpFile.fileName();
|
qCWarning(EPSPLUGIN) << "Could not create the temporary file" << tmpFile.fileName();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
qCDebug(EPSPLUGIN) << "temporary file:" << tmpFile.fileName();
|
qCDebug(EPSPLUGIN) << "temporary file:" << tmpFile.fileName();
|
||||||
@ -204,7 +199,7 @@ bool EPSHandler::read(QImage *image)
|
|||||||
converter.setProcessChannelMode(QProcess::ForwardedErrorChannel);
|
converter.setProcessChannelMode(QProcess::ForwardedErrorChannel);
|
||||||
converter.start(QStringLiteral("gs"), gsArgs);
|
converter.start(QStringLiteral("gs"), gsArgs);
|
||||||
if (!converter.waitForStarted(3000)) {
|
if (!converter.waitForStarted(3000)) {
|
||||||
qWarning() << "Reading EPS files requires gs (from GhostScript)";
|
qCWarning(EPSPLUGIN) << "Reading EPS files requires gs (from GhostScript)";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -303,7 +298,7 @@ bool EPSHandler::write(const QImage &image)
|
|||||||
converter.start(QStringLiteral("gs"), gsArgs);
|
converter.start(QStringLiteral("gs"), gsArgs);
|
||||||
|
|
||||||
if (!converter.waitForStarted(3000)) {
|
if (!converter.waitForStarted(3000)) {
|
||||||
qWarning() << "Creating EPS files requires pdftops (from Poppler) or gs (from GhostScript)";
|
qCWarning(EPSPLUGIN) << "Creating EPS files requires pdftops (from Poppler) or gs (from GhostScript)";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -318,7 +313,7 @@ bool EPSHandler::write(const QImage &image)
|
|||||||
bool EPSHandler::canRead(QIODevice *device)
|
bool EPSHandler::canRead(QIODevice *device)
|
||||||
{
|
{
|
||||||
if (!device) {
|
if (!device) {
|
||||||
qWarning("EPSHandler::canRead() called with no device");
|
qCWarning(EPSPLUGIN) << "EPSHandler::canRead() called with no device";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -339,14 +334,23 @@ bool EPSHandler::canRead(QIODevice *device)
|
|||||||
|
|
||||||
QImageIOPlugin::Capabilities EPSPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
QImageIOPlugin::Capabilities EPSPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
||||||
{
|
{
|
||||||
|
// prevent bug #397040: when on app shutdown the clipboard content is to be copied to survive end of the app,
|
||||||
|
// QXcbIntegration looks for some QImageIOHandler to apply, querying the capabilities and picking any first.
|
||||||
|
// At that point this plugin no longer has its requirements e.g. to run the external process, so we have to deny.
|
||||||
|
// The capabilities seem to be queried on demand in Qt code and not cached, so it's fine to report based
|
||||||
|
// in current dynamic state
|
||||||
|
if (!QCoreApplication::instance()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
if (format == "eps" || format == "epsi" || format == "epsf") {
|
if (format == "eps" || format == "epsi" || format == "epsf") {
|
||||||
return Capabilities(CanRead | CanWrite);
|
return Capabilities(CanRead | CanWrite);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -4,19 +4,20 @@
|
|||||||
*
|
*
|
||||||
* This library is distributed under the conditions of the GNU LGPL.
|
* This library is distributed under the conditions of the GNU LGPL.
|
||||||
*/
|
*/
|
||||||
#ifndef KIMG_EPS_H
|
#ifndef KIMG_EPS_P_H
|
||||||
#define KIMG_EPS_H
|
#define KIMG_EPS_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
#include <QLoggingCategory>
|
||||||
|
|
||||||
class EPSHandler : public QImageIOHandler
|
class EPSHandler : public QImageIOHandler
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
EPSHandler();
|
EPSHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &image) Q_DECL_OVERRIDE;
|
bool write(const QImage &image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -27,9 +28,11 @@ class EPSPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "eps.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "eps.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_EPS_H
|
Q_DECLARE_LOGGING_CATEGORY(EPSPLUGIN)
|
||||||
|
|
||||||
|
#endif // KIMG_EPS_P_H
|
||||||
|
|
||||||
|
@ -41,10 +41,10 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
bool read(char c[], int n) Q_DECL_OVERRIDE;
|
bool read(char c[], int n) override;
|
||||||
Imf::Int64 tellg() Q_DECL_OVERRIDE;
|
Imf::Int64 tellg() override;
|
||||||
void seekg(Imf::Int64 pos) Q_DECL_OVERRIDE;
|
void seekg(Imf::Int64 pos) override;
|
||||||
void clear() Q_DECL_OVERRIDE;
|
void clear() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QIODevice *m_dev;
|
QIODevice *m_dev;
|
||||||
@ -218,10 +218,10 @@ QImageIOPlugin::Capabilities EXRPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead);
|
return Capabilities(CanRead);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_EXR_H
|
#ifndef KIMG_EXR_P_H
|
||||||
#define KIMG_EXR_H
|
#define KIMG_EXR_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ class EXRHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
EXRHandler();
|
EXRHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *outImage) Q_DECL_OVERRIDE;
|
bool read(QImage *outImage) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -30,8 +30,8 @@ class EXRPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "exr.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "exr.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_EXR_H
|
#endif // KIMG_EXR_P_H
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include "hdr_p.h"
|
#include "hdr_p.h"
|
||||||
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QtCore/QDataStream>
|
#include <QDataStream>
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
version 2 of the License, or (at your option) any later version.
|
version 2 of the License, or (at your option) any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_HDR_H
|
#ifndef KIMG_HDR_P_H
|
||||||
#define KIMG_HDR_H
|
#define KIMG_HDR_P_H
|
||||||
|
|
||||||
class QImageIO;
|
class QImageIO;
|
||||||
|
|
||||||
|
@ -1,526 +0,0 @@
|
|||||||
/*
|
|
||||||
* QImageIO Routines to read/write JPEG2000 images.
|
|
||||||
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
|
|
||||||
*
|
|
||||||
* This library is distributed under the conditions of the GNU LGPL.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "jp2_p.h"
|
|
||||||
|
|
||||||
#include <config-jp2.h>
|
|
||||||
|
|
||||||
#if HAVE_SYS_TYPES_H
|
|
||||||
#include <sys/types.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if HAVE_STDINT_H
|
|
||||||
#include <stdint.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <QImage>
|
|
||||||
#include <QVariant>
|
|
||||||
#include <QTextStream>
|
|
||||||
|
|
||||||
// dirty, but avoids a warning because jasper.h includes jas_config.h.
|
|
||||||
#undef PACKAGE
|
|
||||||
#undef VERSION
|
|
||||||
#include <jasper/jasper.h>
|
|
||||||
|
|
||||||
// code taken in parts from JasPer's jiv.c
|
|
||||||
|
|
||||||
#define DEFAULT_RATE 0.10
|
|
||||||
#define MAXCMPTS 256
|
|
||||||
|
|
||||||
/************************* JasPer QIODevice stream ***********************/
|
|
||||||
|
|
||||||
//unfortunately this is declared as static in JasPer libraries
|
|
||||||
static jas_stream_t *jas_stream_create()
|
|
||||||
{
|
|
||||||
jas_stream_t *stream;
|
|
||||||
|
|
||||||
if (!(stream = (jas_stream_t *)jas_malloc(sizeof(jas_stream_t)))) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
stream->openmode_ = 0;
|
|
||||||
stream->bufmode_ = 0;
|
|
||||||
stream->flags_ = 0;
|
|
||||||
stream->bufbase_ = 0;
|
|
||||||
stream->bufstart_ = 0;
|
|
||||||
stream->bufsize_ = 0;
|
|
||||||
stream->ptr_ = 0;
|
|
||||||
stream->cnt_ = 0;
|
|
||||||
stream->ops_ = 0;
|
|
||||||
stream->obj_ = 0;
|
|
||||||
stream->rwcnt_ = 0;
|
|
||||||
stream->rwlimit_ = -1;
|
|
||||||
|
|
||||||
return stream;
|
|
||||||
}
|
|
||||||
|
|
||||||
//unfortunately this is declared as static in JasPer libraries
|
|
||||||
static void jas_stream_initbuf(jas_stream_t *stream, int bufmode, char *buf,
|
|
||||||
int bufsize)
|
|
||||||
{
|
|
||||||
/* If this function is being called, the buffer should not have been
|
|
||||||
initialized yet. */
|
|
||||||
assert(!stream->bufbase_);
|
|
||||||
|
|
||||||
if (bufmode != JAS_STREAM_UNBUF) {
|
|
||||||
/* The full- or line-buffered mode is being employed. */
|
|
||||||
if (!buf) {
|
|
||||||
/* The caller has not specified a buffer to employ, so allocate
|
|
||||||
one. */
|
|
||||||
if ((stream->bufbase_ = (unsigned char *)jas_malloc(JAS_STREAM_BUFSIZE +
|
|
||||||
JAS_STREAM_MAXPUTBACK))) {
|
|
||||||
stream->bufmode_ |= JAS_STREAM_FREEBUF;
|
|
||||||
stream->bufsize_ = JAS_STREAM_BUFSIZE;
|
|
||||||
} else {
|
|
||||||
/* The buffer allocation has failed. Resort to unbuffered
|
|
||||||
operation. */
|
|
||||||
stream->bufbase_ = stream->tinybuf_;
|
|
||||||
stream->bufsize_ = 1;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/* The caller has specified a buffer to employ. */
|
|
||||||
/* The buffer must be large enough to accommodate maximum
|
|
||||||
putback. */
|
|
||||||
assert(bufsize > JAS_STREAM_MAXPUTBACK);
|
|
||||||
stream->bufbase_ = JAS_CAST(uchar *, buf);
|
|
||||||
stream->bufsize_ = bufsize - JAS_STREAM_MAXPUTBACK;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/* The unbuffered mode is being employed. */
|
|
||||||
/* A buffer should not have been supplied by the caller. */
|
|
||||||
assert(!buf);
|
|
||||||
/* Use a trivial one-character buffer. */
|
|
||||||
stream->bufbase_ = stream->tinybuf_;
|
|
||||||
stream->bufsize_ = 1;
|
|
||||||
}
|
|
||||||
stream->bufstart_ = &stream->bufbase_[JAS_STREAM_MAXPUTBACK];
|
|
||||||
stream->ptr_ = stream->bufstart_;
|
|
||||||
stream->cnt_ = 0;
|
|
||||||
stream->bufmode_ |= bufmode & JAS_STREAM_BUFMODEMASK;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qiodevice_read(jas_stream_obj_t *obj, char *buf, int cnt)
|
|
||||||
{
|
|
||||||
QIODevice *io = (QIODevice *) obj;
|
|
||||||
return io->read(buf, cnt);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qiodevice_write(jas_stream_obj_t *obj, char *buf, int cnt)
|
|
||||||
{
|
|
||||||
QIODevice *io = (QIODevice *) obj;
|
|
||||||
return io->write(buf, cnt);
|
|
||||||
}
|
|
||||||
|
|
||||||
static long qiodevice_seek(jas_stream_obj_t *obj, long offset, int origin)
|
|
||||||
{
|
|
||||||
QIODevice *io = (QIODevice *) obj;
|
|
||||||
long newpos;
|
|
||||||
|
|
||||||
switch (origin) {
|
|
||||||
case SEEK_SET:
|
|
||||||
newpos = offset;
|
|
||||||
break;
|
|
||||||
case SEEK_END:
|
|
||||||
newpos = io->size() - offset;
|
|
||||||
break;
|
|
||||||
case SEEK_CUR:
|
|
||||||
newpos = io->pos() + offset;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (newpos < 0) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (io->seek(newpos)) {
|
|
||||||
return newpos;
|
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int qiodevice_close(jas_stream_obj_t *)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static jas_stream_ops_t jas_stream_qiodeviceops = {
|
|
||||||
qiodevice_read,
|
|
||||||
qiodevice_write,
|
|
||||||
qiodevice_seek,
|
|
||||||
qiodevice_close
|
|
||||||
};
|
|
||||||
|
|
||||||
static jas_stream_t *jas_stream_qiodevice(QIODevice *iodevice)
|
|
||||||
{
|
|
||||||
jas_stream_t *stream;
|
|
||||||
|
|
||||||
if (!iodevice) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (!(stream = jas_stream_create())) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* A stream associated with a memory buffer is always opened
|
|
||||||
for both reading and writing in binary mode. */
|
|
||||||
stream->openmode_ = JAS_STREAM_READ | JAS_STREAM_WRITE | JAS_STREAM_BINARY;
|
|
||||||
|
|
||||||
jas_stream_initbuf(stream, JAS_STREAM_FULLBUF, 0, 0);
|
|
||||||
|
|
||||||
/* Select the operations for a memory stream. */
|
|
||||||
stream->obj_ = (void *)iodevice;
|
|
||||||
stream->ops_ = &jas_stream_qiodeviceops;
|
|
||||||
|
|
||||||
return stream;
|
|
||||||
}
|
|
||||||
|
|
||||||
/************************ End of JasPer QIODevice stream ****************/
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
jas_image_t *image;
|
|
||||||
|
|
||||||
int cmptlut[MAXCMPTS];
|
|
||||||
|
|
||||||
jas_image_t *altimage;
|
|
||||||
} gs_t;
|
|
||||||
|
|
||||||
static jas_image_t *
|
|
||||||
read_image(QIODevice *io)
|
|
||||||
{
|
|
||||||
jas_stream_t *in = 0;
|
|
||||||
|
|
||||||
in = jas_stream_qiodevice(io);
|
|
||||||
|
|
||||||
if (!in) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
jas_image_t *image = jas_image_decode(in, -1, 0);
|
|
||||||
jas_stream_close(in);
|
|
||||||
|
|
||||||
// image may be 0, but that's Ok
|
|
||||||
return image;
|
|
||||||
} // read_image
|
|
||||||
|
|
||||||
static bool
|
|
||||||
convert_colorspace(gs_t &gs)
|
|
||||||
{
|
|
||||||
jas_cmprof_t *outprof = jas_cmprof_createfromclrspc(JAS_CLRSPC_SRGB);
|
|
||||||
if (!outprof) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
gs.altimage = jas_image_chclrspc(gs.image, outprof,
|
|
||||||
JAS_CMXFORM_INTENT_PER);
|
|
||||||
if (!gs.altimage) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} // convert_colorspace
|
|
||||||
|
|
||||||
static bool
|
|
||||||
render_view(gs_t &gs, QImage *outImage)
|
|
||||||
{
|
|
||||||
if (!gs.altimage) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
QImage qti;
|
|
||||||
if ((gs.cmptlut[0] = jas_image_getcmptbytype(gs.altimage,
|
|
||||||
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_R))) < 0 ||
|
|
||||||
(gs.cmptlut[1] = jas_image_getcmptbytype(gs.altimage,
|
|
||||||
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_G))) < 0 ||
|
|
||||||
(gs.cmptlut[2] = jas_image_getcmptbytype(gs.altimage,
|
|
||||||
JAS_IMAGE_CT_COLOR(JAS_CLRSPC_CHANIND_RGB_B))) < 0) {
|
|
||||||
return false;
|
|
||||||
} // if
|
|
||||||
|
|
||||||
const int *cmptlut = gs.cmptlut;
|
|
||||||
int v[3];
|
|
||||||
|
|
||||||
// check that all components have the same size.
|
|
||||||
const int width = jas_image_cmptwidth(gs.altimage, cmptlut[0]);
|
|
||||||
const int height = jas_image_cmptheight(gs.altimage, cmptlut[0]);
|
|
||||||
for (int i = 1; i < 3; ++i) {
|
|
||||||
if (jas_image_cmptwidth(gs.altimage, cmptlut[i]) != width ||
|
|
||||||
jas_image_cmptheight(gs.altimage, cmptlut[i]) != height) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} // for
|
|
||||||
|
|
||||||
jas_matrix_t *cmptmatrix[3];
|
|
||||||
jas_seqent_t *buf[3];
|
|
||||||
int prec[3];
|
|
||||||
|
|
||||||
for (int k = 0; k < 3; ++k) {
|
|
||||||
prec[k] = jas_image_cmptprec(gs.altimage, cmptlut[k]);
|
|
||||||
if (!(cmptmatrix[k] = jas_matrix_create(1, width))) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
qti = QImage(jas_image_width(gs.altimage), jas_image_height(gs.altimage),
|
|
||||||
QImage::Format_RGB32);
|
|
||||||
if (qti.isNull()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
uint32_t *data = (uint32_t *)qti.bits();
|
|
||||||
|
|
||||||
for (int y = 0; y < height; ++y) {
|
|
||||||
for (int k = 0; k < 3; ++k) {
|
|
||||||
if (jas_image_readcmpt(gs.altimage, cmptlut[k], 0, y, width, 1, cmptmatrix[k])) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
buf[k] = jas_matrix_getref(cmptmatrix[k], 0, 0);
|
|
||||||
}
|
|
||||||
for (int x = 0; x < width; ++x) {
|
|
||||||
for (int k = 0; k < 3; ++k) {
|
|
||||||
v[k] = *buf[k];
|
|
||||||
// if the precision of the component is too small, increase
|
|
||||||
// it to use the complete value range.
|
|
||||||
v[k] <<= 8 - prec[k];
|
|
||||||
|
|
||||||
if (v[k] < 0) {
|
|
||||||
v[k] = 0;
|
|
||||||
} else if (v[k] > 255) {
|
|
||||||
v[k] = 255;
|
|
||||||
}
|
|
||||||
++buf[k];
|
|
||||||
} // for k
|
|
||||||
|
|
||||||
*data++ = qRgb(v[0], v[1], v[2]);
|
|
||||||
} // for x
|
|
||||||
} // for y
|
|
||||||
|
|
||||||
for (int k = 0; k < 3; ++k) {
|
|
||||||
if (cmptmatrix[k]) {
|
|
||||||
jas_matrix_destroy(cmptmatrix[k]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
*outImage = qti;
|
|
||||||
return true;
|
|
||||||
} // render_view
|
|
||||||
|
|
||||||
static jas_image_t *
|
|
||||||
create_image(const QImage &qi)
|
|
||||||
{
|
|
||||||
// prepare the component parameters
|
|
||||||
jas_image_cmptparm_t *cmptparms = new jas_image_cmptparm_t[ 3 ];
|
|
||||||
|
|
||||||
for (int i = 0; i < 3; ++i) {
|
|
||||||
// x and y offset
|
|
||||||
cmptparms[i].tlx = 0;
|
|
||||||
cmptparms[i].tly = 0;
|
|
||||||
|
|
||||||
// the resulting image will be hstep*width x vstep*height !
|
|
||||||
cmptparms[i].hstep = 1;
|
|
||||||
cmptparms[i].vstep = 1;
|
|
||||||
cmptparms[i].width = qi.width();
|
|
||||||
cmptparms[i].height = qi.height();
|
|
||||||
|
|
||||||
// we write everything as 24bit truecolor ATM
|
|
||||||
cmptparms[i].prec = 8;
|
|
||||||
cmptparms[i].sgnd = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
jas_image_t *ji = jas_image_create(3 /* number components */, cmptparms, JAS_CLRSPC_UNKNOWN);
|
|
||||||
delete[] cmptparms;
|
|
||||||
|
|
||||||
// returning 0 is ok
|
|
||||||
return ji;
|
|
||||||
} // create_image
|
|
||||||
|
|
||||||
static bool
|
|
||||||
write_components(jas_image_t *ji, const QImage &qi)
|
|
||||||
{
|
|
||||||
const unsigned height = qi.height();
|
|
||||||
const unsigned width = qi.width();
|
|
||||||
|
|
||||||
jas_matrix_t *m = jas_matrix_create(height, width);
|
|
||||||
if (!m) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
jas_image_setclrspc(ji, JAS_CLRSPC_SRGB);
|
|
||||||
|
|
||||||
jas_image_setcmpttype(ji, 0, JAS_IMAGE_CT_RGB_R);
|
|
||||||
for (uint y = 0; y < height; ++y)
|
|
||||||
for (uint x = 0; x < width; ++x) {
|
|
||||||
jas_matrix_set(m, y, x, qRed(qi.pixel(x, y)));
|
|
||||||
}
|
|
||||||
jas_image_writecmpt(ji, 0, 0, 0, width, height, m);
|
|
||||||
|
|
||||||
jas_image_setcmpttype(ji, 1, JAS_IMAGE_CT_RGB_G);
|
|
||||||
for (uint y = 0; y < height; ++y)
|
|
||||||
for (uint x = 0; x < width; ++x) {
|
|
||||||
jas_matrix_set(m, y, x, qGreen(qi.pixel(x, y)));
|
|
||||||
}
|
|
||||||
jas_image_writecmpt(ji, 1, 0, 0, width, height, m);
|
|
||||||
|
|
||||||
jas_image_setcmpttype(ji, 2, JAS_IMAGE_CT_RGB_B);
|
|
||||||
for (uint y = 0; y < height; ++y)
|
|
||||||
for (uint x = 0; x < width; ++x) {
|
|
||||||
jas_matrix_set(m, y, x, qBlue(qi.pixel(x, y)));
|
|
||||||
}
|
|
||||||
jas_image_writecmpt(ji, 2, 0, 0, width, height, m);
|
|
||||||
jas_matrix_destroy(m);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
} // write_components
|
|
||||||
|
|
||||||
static bool
|
|
||||||
write_image(const QImage &image, QIODevice *io, int quality)
|
|
||||||
{
|
|
||||||
jas_stream_t *stream = 0;
|
|
||||||
stream = jas_stream_qiodevice(io);
|
|
||||||
|
|
||||||
// by here, a jas_stream_t is open
|
|
||||||
if (!stream) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
jas_image_t *ji = create_image(image);
|
|
||||||
if (!ji) {
|
|
||||||
jas_stream_close(stream);
|
|
||||||
return false;
|
|
||||||
} // if
|
|
||||||
|
|
||||||
if (!write_components(ji, image)) {
|
|
||||||
jas_stream_close(stream);
|
|
||||||
jas_image_destroy(ji);
|
|
||||||
return false;
|
|
||||||
} // if
|
|
||||||
|
|
||||||
// optstr:
|
|
||||||
// - rate=#B => the resulting file size is about # bytes
|
|
||||||
// - rate=0.0 .. 1.0 => the resulting file size is about the factor times
|
|
||||||
// the uncompressed size
|
|
||||||
// use sprintf for locale-aware string
|
|
||||||
char rateBuffer[16];
|
|
||||||
sprintf(rateBuffer, "rate=%.2g\n", (quality < 0) ? DEFAULT_RATE : quality / 100.0);
|
|
||||||
int i = jp2_encode(ji, stream, rateBuffer);
|
|
||||||
|
|
||||||
jas_image_destroy(ji);
|
|
||||||
jas_stream_close(stream);
|
|
||||||
|
|
||||||
if (i != 0) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
JP2Handler::JP2Handler()
|
|
||||||
{
|
|
||||||
quality = 75;
|
|
||||||
jas_init();
|
|
||||||
}
|
|
||||||
|
|
||||||
JP2Handler::~JP2Handler()
|
|
||||||
{
|
|
||||||
jas_cleanup();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool JP2Handler::canRead() const
|
|
||||||
{
|
|
||||||
if (canRead(device())) {
|
|
||||||
setFormat("jp2");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool JP2Handler::canRead(QIODevice *device)
|
|
||||||
{
|
|
||||||
if (!device) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return device->peek(6) == QByteArray("\x00\x00\x00\x0C\x6A\x50", 6);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool JP2Handler::read(QImage *image)
|
|
||||||
{
|
|
||||||
if (!canRead()) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
gs_t gs;
|
|
||||||
if (!(gs.image = read_image(device()))) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!convert_colorspace(gs)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
render_view(gs, image);
|
|
||||||
|
|
||||||
if (gs.image) {
|
|
||||||
jas_image_destroy(gs.image);
|
|
||||||
}
|
|
||||||
if (gs.altimage) {
|
|
||||||
jas_image_destroy(gs.altimage);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
bool JP2Handler::write(const QImage &image)
|
|
||||||
{
|
|
||||||
return write_image(image, device(), quality);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool JP2Handler::supportsOption(ImageOption option) const
|
|
||||||
{
|
|
||||||
return option == Quality;
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant JP2Handler::option(ImageOption option) const
|
|
||||||
{
|
|
||||||
if (option == Quality) {
|
|
||||||
return quality;
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
void JP2Handler::setOption(ImageOption option, const QVariant &value)
|
|
||||||
{
|
|
||||||
if (option == Quality) {
|
|
||||||
quality = qBound(-1, value.toInt(), 100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QImageIOPlugin::Capabilities JP2Plugin::capabilities(QIODevice *device, const QByteArray &format) const
|
|
||||||
{
|
|
||||||
if (format == "jp2") {
|
|
||||||
return Capabilities(CanRead | CanWrite);
|
|
||||||
}
|
|
||||||
if (!format.isEmpty()) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (!device->isOpen()) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
Capabilities cap;
|
|
||||||
if (device->isReadable() && JP2Handler::canRead(device)) {
|
|
||||||
cap |= CanRead;
|
|
||||||
}
|
|
||||||
if (device->isWritable()) {
|
|
||||||
cap |= CanWrite;
|
|
||||||
}
|
|
||||||
return cap;
|
|
||||||
}
|
|
||||||
|
|
||||||
QImageIOHandler *JP2Plugin::create(QIODevice *device, const QByteArray &format) const
|
|
||||||
{
|
|
||||||
QImageIOHandler *handler = new JP2Handler;
|
|
||||||
handler->setDevice(device);
|
|
||||||
handler->setFormat(format);
|
|
||||||
return handler;
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"Keys": [ "jp2" ],
|
|
||||||
"MimeTypes": [ "image/jp2" ]
|
|
||||||
}
|
|
@ -1,42 +0,0 @@
|
|||||||
/*
|
|
||||||
* QImageIO Routines to read/write JPEG2000 images.
|
|
||||||
* copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
|
|
||||||
*
|
|
||||||
* This library is distributed under the conditions of the GNU LGPL.
|
|
||||||
*/
|
|
||||||
#ifndef KIMG_JP2_H
|
|
||||||
#define KIMG_JP2_H
|
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
|
||||||
|
|
||||||
class JP2Handler : public QImageIOHandler
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
JP2Handler();
|
|
||||||
virtual ~JP2Handler();
|
|
||||||
|
|
||||||
virtual bool canRead() const;
|
|
||||||
virtual bool read(QImage *image);
|
|
||||||
virtual bool write(const QImage &image);
|
|
||||||
|
|
||||||
virtual bool supportsOption(ImageOption option) const;
|
|
||||||
virtual QVariant option(ImageOption option) const;
|
|
||||||
virtual void setOption(ImageOption option, const QVariant &value);
|
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
|
||||||
|
|
||||||
private:
|
|
||||||
int quality;
|
|
||||||
};
|
|
||||||
|
|
||||||
class JP2Plugin : public QImageIOPlugin
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "jp2.json")
|
|
||||||
|
|
||||||
public:
|
|
||||||
virtual Capabilities capabilities(QIODevice *device, const QByteArray &format) const;
|
|
||||||
virtual QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // KIMG_JP2_H
|
|
88
src/imageformats/kra.cpp
Normal file
88
src/imageformats/kra.cpp
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
/* This file is part of the KDE project
|
||||||
|
Copyright (C) 2013 Boudewijn Rempt <boud@valdyas.org>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the Lesser GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This code is based on Thacher Ulrich PSD loading code released
|
||||||
|
on public domain. See: http://tulrich.com/geekstuff/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "kra.h"
|
||||||
|
|
||||||
|
#include <kzip.h>
|
||||||
|
|
||||||
|
#include <QImage>
|
||||||
|
#include <QIODevice>
|
||||||
|
#include <QFile>
|
||||||
|
|
||||||
|
KraHandler::KraHandler()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool KraHandler::canRead() const
|
||||||
|
{
|
||||||
|
if (canRead(device())) {
|
||||||
|
setFormat("kra");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool KraHandler::read(QImage *image)
|
||||||
|
{
|
||||||
|
KZip zip(device());
|
||||||
|
if (!zip.open(QIODevice::ReadOnly)) return false;
|
||||||
|
|
||||||
|
const KArchiveEntry *entry = zip.directory()->entry(QLatin1String("mergedimage.png"));
|
||||||
|
if (!entry || !entry->isFile()) return false;
|
||||||
|
|
||||||
|
const KZipFileEntry* fileZipEntry = static_cast<const KZipFileEntry*>(entry);
|
||||||
|
|
||||||
|
image->loadFromData(fileZipEntry->data(), "PNG");
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool KraHandler::canRead(QIODevice *device)
|
||||||
|
{
|
||||||
|
if (!device) {
|
||||||
|
qWarning("KraHandler::canRead() called with no device");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
char buff[57];
|
||||||
|
if (device->peek(buff, sizeof(buff)) == sizeof(buff))
|
||||||
|
return qstrcmp(buff + 0x26, "application/x-krita") == 0;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QImageIOPlugin::Capabilities KraPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
||||||
|
{
|
||||||
|
if (format == "kra" || format == "KRA") {
|
||||||
|
return Capabilities(CanRead);
|
||||||
|
}
|
||||||
|
if (!format.isEmpty()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
if (!device->isOpen()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
Capabilities cap;
|
||||||
|
if (device->isReadable() && KraHandler::canRead(device)) {
|
||||||
|
cap |= CanRead;
|
||||||
|
}
|
||||||
|
return cap;
|
||||||
|
}
|
||||||
|
|
||||||
|
QImageIOHandler *KraPlugin::create(QIODevice *device, const QByteArray &format) const
|
||||||
|
{
|
||||||
|
QImageIOHandler *handler = new KraHandler;
|
||||||
|
handler->setDevice(device);
|
||||||
|
handler->setFormat(format);
|
||||||
|
return handler;
|
||||||
|
}
|
7
src/imageformats/kra.desktop
Normal file
7
src/imageformats/kra.desktop
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Type=Service
|
||||||
|
X-KDE-ServiceTypes=QImageIOPlugins
|
||||||
|
X-KDE-ImageFormat=kra
|
||||||
|
X-KDE-MimeType=application/x-krita
|
||||||
|
X-KDE-Read=true
|
||||||
|
X-KDE-Write=false
|
38
src/imageformats/kra.h
Normal file
38
src/imageformats/kra.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/* This file is part of the KDE project
|
||||||
|
Copyright (c) 2013 Boudewijn Rempt <boud@valdyas.org>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the Lesser GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef KIMG_KRA_H
|
||||||
|
#define KIMG_KRA_H
|
||||||
|
|
||||||
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
|
class KraHandler : public QImageIOHandler
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
KraHandler();
|
||||||
|
|
||||||
|
bool canRead() const override;
|
||||||
|
bool read(QImage *image) override;
|
||||||
|
|
||||||
|
static bool canRead(QIODevice *device);
|
||||||
|
};
|
||||||
|
|
||||||
|
class KraPlugin : public QImageIOPlugin
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "kra.json")
|
||||||
|
|
||||||
|
public:
|
||||||
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
4
src/imageformats/kra.json
Normal file
4
src/imageformats/kra.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"Keys": [ "kra" ],
|
||||||
|
"MimeTypes": [ "application/x-krita" ]
|
||||||
|
}
|
87
src/imageformats/ora.cpp
Normal file
87
src/imageformats/ora.cpp
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
/* This file is part of the KDE project
|
||||||
|
Copyright (C) 2013 Boudewijn Rempt <boud@valdyas.org>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the Lesser GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This code is based on Thacher Ulrich PSD loading code released
|
||||||
|
on public domain. See: http://tulrich.com/geekstuff/
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ora.h"
|
||||||
|
|
||||||
|
#include <QImage>
|
||||||
|
#include <QScopedPointer>
|
||||||
|
|
||||||
|
#include <kzip.h>
|
||||||
|
|
||||||
|
OraHandler::OraHandler()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OraHandler::canRead() const
|
||||||
|
{
|
||||||
|
if (canRead(device())) {
|
||||||
|
setFormat("ora");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OraHandler::read(QImage *image)
|
||||||
|
{
|
||||||
|
KZip zip(device());
|
||||||
|
if (!zip.open(QIODevice::ReadOnly)) return false;
|
||||||
|
|
||||||
|
const KArchiveEntry *entry = zip.directory()->entry(QLatin1String("mergedimage.png"));
|
||||||
|
if (!entry || !entry->isFile()) return false;
|
||||||
|
|
||||||
|
const KZipFileEntry* fileZipEntry = static_cast<const KZipFileEntry*>(entry);
|
||||||
|
|
||||||
|
image->loadFromData(fileZipEntry->data(), "PNG");
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool OraHandler::canRead(QIODevice *device)
|
||||||
|
{
|
||||||
|
if (!device) {
|
||||||
|
qWarning("OraHandler::canRead() called with no device");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
char buff[54];
|
||||||
|
if (device->peek(buff, sizeof(buff)) == sizeof(buff))
|
||||||
|
return qstrcmp(buff + 0x26, "image/openraster") == 0;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QImageIOPlugin::Capabilities OraPlugin::capabilities(QIODevice *device, const QByteArray &format) const
|
||||||
|
{
|
||||||
|
if (format == "ora" || format == "ORA") {
|
||||||
|
return Capabilities(CanRead);
|
||||||
|
}
|
||||||
|
if (!format.isEmpty()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
if (!device->isOpen()) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
Capabilities cap;
|
||||||
|
if (device->isReadable() && OraHandler::canRead(device)) {
|
||||||
|
cap |= CanRead;
|
||||||
|
}
|
||||||
|
return cap;
|
||||||
|
}
|
||||||
|
|
||||||
|
QImageIOHandler *OraPlugin::create(QIODevice *device, const QByteArray &format) const
|
||||||
|
{
|
||||||
|
QImageIOHandler *handler = new OraHandler;
|
||||||
|
handler->setDevice(device);
|
||||||
|
handler->setFormat(format);
|
||||||
|
return handler;
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Type=Service
|
Type=Service
|
||||||
X-KDE-ServiceTypes=QImageIOPlugins
|
X-KDE-ServiceTypes=QImageIOPlugins
|
||||||
X-KDE-ImageFormat=dds
|
X-KDE-ImageFormat=ora
|
||||||
X-KDE-MimeType=image/x-dds
|
X-KDE-MimeType=image/openraster
|
||||||
X-KDE-Read=true
|
X-KDE-Read=true
|
||||||
X-KDE-Write=false
|
X-KDE-Write=false
|
38
src/imageformats/ora.h
Normal file
38
src/imageformats/ora.h
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
/* This file is part of the KDE project
|
||||||
|
Copyright (c) 2013 Boudewijn Rempt <boud@valdyas.org>
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the Lesser GNU General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef KIMG_ORA_H
|
||||||
|
#define KIMG_ORA_H
|
||||||
|
|
||||||
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
|
class OraHandler : public QImageIOHandler
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
OraHandler();
|
||||||
|
|
||||||
|
bool canRead() const override;
|
||||||
|
bool read(QImage *image) override;
|
||||||
|
|
||||||
|
static bool canRead(QIODevice *device);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
class OraPlugin : public QImageIOPlugin
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "ora.json")
|
||||||
|
public:
|
||||||
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
4
src/imageformats/ora.json
Normal file
4
src/imageformats/ora.json
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"Keys": [ "ora" ],
|
||||||
|
"MimeTypes": [ "image/openraster" ]
|
||||||
|
}
|
@ -667,10 +667,10 @@ QImageIOPlugin::Capabilities PCXPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead | CanWrite);
|
return Capabilities(CanRead | CanWrite);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
version 2 of the License, or (at your option) any later version.
|
version 2 of the License, or (at your option) any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_PCX_H
|
#ifndef KIMG_PCX_P_H
|
||||||
#define KIMG_PCX_H
|
#define KIMG_PCX_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -17,9 +17,9 @@ class PCXHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
PCXHandler();
|
PCXHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &image) Q_DECL_OVERRIDE;
|
bool write(const QImage &image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -30,8 +30,8 @@ class PCXPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "pcx.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "pcx.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_PCX_H
|
#endif // KIMG_PCX_P_H
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -449,10 +449,10 @@ QImageIOPlugin::Capabilities SoftimagePICPlugin::capabilities(QIODevice *device,
|
|||||||
return Capabilities(CanRead | CanWrite);
|
return Capabilities(CanRead | CanWrite);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -14,12 +14,12 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_PIC_H
|
#ifndef KIMG_PIC_P_H
|
||||||
#define KIMG_PIC_H
|
#define KIMG_PIC_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
#include <QDataStream>
|
#include <QDataStream>
|
||||||
@ -154,13 +154,13 @@ struct PicChannel {
|
|||||||
class SoftimagePICHandler : public QImageIOHandler
|
class SoftimagePICHandler : public QImageIOHandler
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &) Q_DECL_OVERRIDE;
|
bool write(const QImage &) override;
|
||||||
|
|
||||||
QVariant option(ImageOption option) const Q_DECL_OVERRIDE;
|
QVariant option(ImageOption option) const override;
|
||||||
void setOption(ImageOption option, const QVariant &value) Q_DECL_OVERRIDE;
|
void setOption(ImageOption option, const QVariant &value) override;
|
||||||
bool supportsOption(ImageOption option) const Q_DECL_OVERRIDE;
|
bool supportsOption(ImageOption option) const override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
|
|
||||||
@ -195,8 +195,8 @@ class SoftimagePICPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "pic.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "pic.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_PIC_H
|
#endif // KIMG_PIC_P_H
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -120,19 +120,19 @@ static quint8 readPixel(QDataStream &stream) {
|
|||||||
quint8 pixel;
|
quint8 pixel;
|
||||||
stream >> pixel;
|
stream >> pixel;
|
||||||
return pixel;
|
return pixel;
|
||||||
};
|
}
|
||||||
static QRgb updateRed(QRgb oldPixel, quint8 redPixel) {
|
static QRgb updateRed(QRgb oldPixel, quint8 redPixel) {
|
||||||
return qRgba(redPixel, qGreen(oldPixel), qBlue(oldPixel), qAlpha(oldPixel));
|
return qRgba(redPixel, qGreen(oldPixel), qBlue(oldPixel), qAlpha(oldPixel));
|
||||||
};
|
}
|
||||||
static QRgb updateGreen(QRgb oldPixel, quint8 greenPixel) {
|
static QRgb updateGreen(QRgb oldPixel, quint8 greenPixel) {
|
||||||
return qRgba(qRed(oldPixel), greenPixel, qBlue(oldPixel), qAlpha(oldPixel));
|
return qRgba(qRed(oldPixel), greenPixel, qBlue(oldPixel), qAlpha(oldPixel));
|
||||||
};
|
}
|
||||||
static QRgb updateBlue(QRgb oldPixel, quint8 bluePixel) {
|
static QRgb updateBlue(QRgb oldPixel, quint8 bluePixel) {
|
||||||
return qRgba(qRed(oldPixel), qGreen(oldPixel), bluePixel, qAlpha(oldPixel));
|
return qRgba(qRed(oldPixel), qGreen(oldPixel), bluePixel, qAlpha(oldPixel));
|
||||||
};
|
}
|
||||||
static QRgb updateAlpha(QRgb oldPixel, quint8 alphaPixel) {
|
static QRgb updateAlpha(QRgb oldPixel, quint8 alphaPixel) {
|
||||||
return qRgba(qRed(oldPixel), qGreen(oldPixel), qBlue(oldPixel), alphaPixel);
|
return qRgba(qRed(oldPixel), qGreen(oldPixel), qBlue(oldPixel), alphaPixel);
|
||||||
};
|
}
|
||||||
typedef QRgb(*channelUpdater)(QRgb,quint8);
|
typedef QRgb(*channelUpdater)(QRgb,quint8);
|
||||||
|
|
||||||
// Load the PSD image.
|
// Load the PSD image.
|
||||||
@ -300,10 +300,10 @@ QImageIOPlugin::Capabilities PSDPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead);
|
return Capabilities(CanRead);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
Type=Service
|
Type=Service
|
||||||
X-KDE-ServiceTypes=QImageIOPlugins
|
X-KDE-ServiceTypes=QImageIOPlugins
|
||||||
X-KDE-ImageFormat=psd
|
X-KDE-ImageFormat=psd
|
||||||
X-KDE-MimeType=image/x-psd
|
X-KDE-MimeType=image/vnd.adobe.photoshop
|
||||||
X-KDE-Read=true
|
X-KDE-Read=true
|
||||||
X-KDE-Write=false
|
X-KDE-Write=false
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{
|
{
|
||||||
"Keys": [ "psd" ],
|
"Keys": [ "psd" ],
|
||||||
"MimeTypes": [ "image/x-psd" ]
|
"MimeTypes": [ "image/vnd.adobe.photoshop" ]
|
||||||
}
|
}
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
version 2 of the License, or (at your option) any later version.
|
version 2 of the License, or (at your option) any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_PSD_H
|
#ifndef KIMG_PSD_P_H
|
||||||
#define KIMG_PSD_H
|
#define KIMG_PSD_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -17,8 +17,8 @@ class PSDHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
PSDHandler();
|
PSDHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -29,9 +29,9 @@ class PSDPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "psd.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "psd.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_PSD_H
|
#endif // KIMG_PSD_P_H
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include "ras_p.h"
|
#include "ras_p.h"
|
||||||
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QtCore/QDataStream>
|
#include <QDataStream>
|
||||||
// #include <QDebug>
|
// #include <QDebug>
|
||||||
|
|
||||||
namespace // Private.
|
namespace // Private.
|
||||||
@ -282,10 +282,10 @@ QImageIOPlugin::Capabilities RASPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead);
|
return Capabilities(CanRead);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
version 2 of the License, or (at your option) any later version.
|
version 2 of the License, or (at your option) any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_RAS_H
|
#ifndef KIMG_RAS_P_H
|
||||||
#define KIMG_RAS_H
|
#define KIMG_RAS_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ class RASHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
RASHandler();
|
RASHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -30,9 +30,9 @@ class RASPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "ras.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "ras.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_RAS_H
|
#endif // KIMG_RAS_P_H
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@
|
|||||||
|
|
||||||
#include "rgb_p.h"
|
#include "rgb_p.h"
|
||||||
|
|
||||||
#include <QtCore/QMap>
|
#include <QMap>
|
||||||
#include <QtCore/QVector>
|
#include <QVector>
|
||||||
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
// #include <QDebug>
|
// #include <QDebug>
|
||||||
@ -111,8 +111,8 @@ private:
|
|||||||
};
|
};
|
||||||
|
|
||||||
SGIImage::SGIImage(QIODevice *io) :
|
SGIImage::SGIImage(QIODevice *io) :
|
||||||
_starttab(0),
|
_starttab(nullptr),
|
||||||
_lengthtab(0)
|
_lengthtab(nullptr)
|
||||||
{
|
{
|
||||||
_dev = io;
|
_dev = io;
|
||||||
_stream.setDevice(_dev);
|
_stream.setDevice(_dev);
|
||||||
@ -686,8 +686,8 @@ bool RGBHandler::canRead(QIODevice *device)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
qint64 oldPos = device->pos();
|
const qint64 oldPos = device->pos();
|
||||||
QByteArray head = device->readLine(64);
|
const QByteArray head = device->readLine(64);
|
||||||
int readBytes = head.size();
|
int readBytes = head.size();
|
||||||
|
|
||||||
if (device->isSequential()) {
|
if (device->isSequential()) {
|
||||||
@ -699,10 +699,7 @@ bool RGBHandler::canRead(QIODevice *device)
|
|||||||
device->seek(oldPos);
|
device->seek(oldPos);
|
||||||
}
|
}
|
||||||
|
|
||||||
const QRegExp regexp(QLatin1String("^\x01\xda\x01[\x01\x02]"));
|
return head.size() >= 4 && head.startsWith("\x01\xda\x01") && (head[3] == 1 || head[3] == 2);
|
||||||
QString data(QString::fromLocal8Bit(head));
|
|
||||||
|
|
||||||
return data.contains(regexp);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
@ -714,10 +711,10 @@ QImageIOPlugin::Capabilities RGBPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead | CanWrite);
|
return Capabilities(CanRead | CanWrite);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
// published by the Free Software Foundation; either version 2 of the
|
// published by the Free Software Foundation; either version 2 of the
|
||||||
// License, or (at your option) any later version.
|
// License, or (at your option) any later version.
|
||||||
|
|
||||||
#ifndef KIMG_RGB_H
|
#ifndef KIMG_RGB_P_H
|
||||||
#define KIMG_RGB_H
|
#define KIMG_RGB_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -17,9 +17,9 @@ class RGBHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
RGBHandler();
|
RGBHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &image) Q_DECL_OVERRIDE;
|
bool write(const QImage &image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -30,9 +30,9 @@ class RGBPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "rgb.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "rgb.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_RGB_H
|
#endif // KIMG_RGB_P_H
|
||||||
|
|
||||||
|
@ -14,12 +14,12 @@
|
|||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMAGEFORMATS_RLE_H
|
#ifndef KIMAGEFORMATS_RLE_P_H
|
||||||
#define KIMAGEFORMATS_RLE_H
|
#define KIMAGEFORMATS_RLE_P_H
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDataStream>
|
#include <QDataStream>
|
||||||
@ -75,7 +75,7 @@ template<typename Item, typename Func1, typename Func2>
|
|||||||
static inline bool decodeRLEData(RLEVariant variant,
|
static inline bool decodeRLEData(RLEVariant variant,
|
||||||
QDataStream &stream,
|
QDataStream &stream,
|
||||||
Item *dest,
|
Item *dest,
|
||||||
quint16 length,
|
quint32 length,
|
||||||
Func1 readData,
|
Func1 readData,
|
||||||
Func2 updateItem)
|
Func2 updateItem)
|
||||||
{
|
{
|
||||||
@ -220,4 +220,4 @@ static inline void encodeRLEData(RLEVariant variant,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // KIMAGEFORMATS_RLE_H
|
#endif // KIMAGEFORMATS_RLE_P_H
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QtCore/QDataStream>
|
#include <QDataStream>
|
||||||
// #include <QDebug>
|
// #include <QDebug>
|
||||||
|
|
||||||
typedef quint32 uint;
|
typedef quint32 uint;
|
||||||
@ -145,6 +145,7 @@ struct TgaHeaderInfo {
|
|||||||
switch (tga.image_type) {
|
switch (tga.image_type) {
|
||||||
case TGA_TYPE_RLE_INDEXED:
|
case TGA_TYPE_RLE_INDEXED:
|
||||||
rle = true;
|
rle = true;
|
||||||
|
Q_FALLTHROUGH();
|
||||||
// no break is intended!
|
// no break is intended!
|
||||||
case TGA_TYPE_INDEXED:
|
case TGA_TYPE_INDEXED:
|
||||||
pal = true;
|
pal = true;
|
||||||
@ -152,6 +153,7 @@ struct TgaHeaderInfo {
|
|||||||
|
|
||||||
case TGA_TYPE_RLE_RGB:
|
case TGA_TYPE_RLE_RGB:
|
||||||
rle = true;
|
rle = true;
|
||||||
|
Q_FALLTHROUGH();
|
||||||
// no break is intended!
|
// no break is intended!
|
||||||
case TGA_TYPE_RGB:
|
case TGA_TYPE_RGB:
|
||||||
rgb = true;
|
rgb = true;
|
||||||
@ -159,6 +161,7 @@ struct TgaHeaderInfo {
|
|||||||
|
|
||||||
case TGA_TYPE_RLE_GREY:
|
case TGA_TYPE_RLE_GREY:
|
||||||
rle = true;
|
rle = true;
|
||||||
|
Q_FALLTHROUGH();
|
||||||
// no break is intended!
|
// no break is intended!
|
||||||
case TGA_TYPE_GREY:
|
case TGA_TYPE_GREY:
|
||||||
grey = true;
|
grey = true;
|
||||||
@ -414,10 +417,10 @@ QImageIOPlugin::Capabilities TGAPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead | CanWrite);
|
return Capabilities(CanRead | CanWrite);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -7,8 +7,8 @@
|
|||||||
version 2 of the License, or (at your option) any later version.
|
version 2 of the License, or (at your option) any later version.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_TGA_H
|
#ifndef KIMG_TGA_P_H
|
||||||
#define KIMG_TGA_H
|
#define KIMG_TGA_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -17,9 +17,9 @@ class TGAHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
TGAHandler();
|
TGAHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &image) Q_DECL_OVERRIDE;
|
bool write(const QImage &image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -30,8 +30,8 @@ class TGAPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "tga.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "tga.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_TGA_H
|
#endif // KIMG_TGA_P_H
|
||||||
|
@ -24,9 +24,9 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QtCore/QIODevice>
|
#include <QIODevice>
|
||||||
#include <QtCore/QStack>
|
#include <QStack>
|
||||||
#include <QtCore/QVector>
|
#include <QVector>
|
||||||
// #include <QDebug>
|
// #include <QDebug>
|
||||||
|
|
||||||
#include "gimp_p.h"
|
#include "gimp_p.h"
|
||||||
@ -107,7 +107,7 @@ private:
|
|||||||
//! copied in different ways.
|
//! copied in different ways.
|
||||||
void (*assignBytes)(Layer &layer, uint i, uint j);
|
void (*assignBytes)(Layer &layer, uint i, uint j);
|
||||||
|
|
||||||
Layer(void) : name(0) {}
|
Layer(void) : name(nullptr) {}
|
||||||
~Layer(void)
|
~Layer(void)
|
||||||
{
|
{
|
||||||
delete[] name;
|
delete[] name;
|
||||||
@ -416,7 +416,7 @@ bool XCFImageFormat::loadImageProperties(QDataStream &xcf_io, XCFImage &xcf_imag
|
|||||||
property.readBytes(tag, size);
|
property.readBytes(tag, size);
|
||||||
|
|
||||||
quint32 flags;
|
quint32 flags;
|
||||||
char *data = 0;
|
char *data = nullptr;
|
||||||
property >> flags >> data;
|
property >> flags >> data;
|
||||||
|
|
||||||
if (tag && strncmp(tag, "gimp-comment", strlen("gimp-comment")) == 0) {
|
if (tag && strncmp(tag, "gimp-comment", strlen("gimp-comment")) == 0) {
|
||||||
@ -474,7 +474,7 @@ bool XCFImageFormat::loadProperty(QDataStream &xcf_io, PropType &type, QByteArra
|
|||||||
xcf_io >> foo;
|
xcf_io >> foo;
|
||||||
type = PropType(foo); // TODO urks
|
type = PropType(foo); // TODO urks
|
||||||
|
|
||||||
char *data = 0;
|
char *data = nullptr;
|
||||||
quint32 size;
|
quint32 size;
|
||||||
|
|
||||||
// The colormap property size is not the correct number of bytes:
|
// The colormap property size is not the correct number of bytes:
|
||||||
@ -713,7 +713,8 @@ bool XCFImageFormat::composeTiles(XCFImage &xcf_image)
|
|||||||
|
|
||||||
// SANITY CHECK: Catch corrupted XCF image file where the width or height
|
// SANITY CHECK: Catch corrupted XCF image file where the width or height
|
||||||
// of a tile is reported are bogus. See Bug# 234030.
|
// of a tile is reported are bogus. See Bug# 234030.
|
||||||
if (layer.width > 32767 || layer.height > 32767 || layer.width * layer.height > 16384 * 16384) {
|
if (layer.width > 32767 || layer.height > 32767
|
||||||
|
|| (sizeof(void *) == 4 && layer.width * layer.height > 16384 * 16384)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1323,7 +1324,7 @@ bool XCFImageFormat::initializeImage(XCFImage &xcf_image)
|
|||||||
image.fill(qRgb(255, 255, 255));
|
image.fill(qRgb(255, 255, 255));
|
||||||
break;
|
break;
|
||||||
} // else, fall through to 32-bit representation
|
} // else, fall through to 32-bit representation
|
||||||
|
Q_FALLTHROUGH();
|
||||||
case RGBA_GIMAGE:
|
case RGBA_GIMAGE:
|
||||||
image = QImage(xcf_image.width, xcf_image.height, QImage::Format_ARGB32);
|
image = QImage(xcf_image.width, xcf_image.height, QImage::Format_ARGB32);
|
||||||
if (image.isNull()) {
|
if (image.isNull()) {
|
||||||
@ -1343,7 +1344,7 @@ bool XCFImageFormat::initializeImage(XCFImage &xcf_image)
|
|||||||
image.fill(255);
|
image.fill(255);
|
||||||
break;
|
break;
|
||||||
} // else, fall through to 32-bit representation
|
} // else, fall through to 32-bit representation
|
||||||
|
Q_FALLTHROUGH();
|
||||||
case GRAYA_GIMAGE:
|
case GRAYA_GIMAGE:
|
||||||
image = QImage(xcf_image.width, xcf_image.height, QImage::Format_ARGB32);
|
image = QImage(xcf_image.width, xcf_image.height, QImage::Format_ARGB32);
|
||||||
if (image.isNull()) {
|
if (image.isNull()) {
|
||||||
@ -1442,7 +1443,7 @@ void XCFImageFormat::copyLayerToImage(XCFImage &xcf_image)
|
|||||||
{
|
{
|
||||||
Layer &layer(xcf_image.layer);
|
Layer &layer(xcf_image.layer);
|
||||||
QImage &image(xcf_image.image);
|
QImage &image(xcf_image.image);
|
||||||
PixelCopyOperation copy = 0;
|
PixelCopyOperation copy = nullptr;
|
||||||
|
|
||||||
switch (layer.type) {
|
switch (layer.type) {
|
||||||
case RGB_GIMAGE:
|
case RGB_GIMAGE:
|
||||||
@ -1725,7 +1726,7 @@ void XCFImageFormat::mergeLayerIntoImage(XCFImage &xcf_image)
|
|||||||
Layer &layer(xcf_image.layer);
|
Layer &layer(xcf_image.layer);
|
||||||
QImage &image(xcf_image.image);
|
QImage &image(xcf_image.image);
|
||||||
|
|
||||||
PixelMergeOperation merge = 0;
|
PixelMergeOperation merge = nullptr;
|
||||||
|
|
||||||
if (!layer.opacity) {
|
if (!layer.opacity) {
|
||||||
return; // don't bother doing anything
|
return; // don't bother doing anything
|
||||||
@ -2686,10 +2687,10 @@ QImageIOPlugin::Capabilities XCFPlugin::capabilities(QIODevice *device, const QB
|
|||||||
return Capabilities(CanRead);
|
return Capabilities(CanRead);
|
||||||
}
|
}
|
||||||
if (!format.isEmpty()) {
|
if (!format.isEmpty()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
if (!device->isOpen()) {
|
if (!device->isOpen()) {
|
||||||
return 0;
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Capabilities cap;
|
Capabilities cap;
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef KIMG_XCF_H
|
#ifndef KIMG_XCF_P_H
|
||||||
#define KIMG_XCF_H
|
#define KIMG_XCF_P_H
|
||||||
|
|
||||||
#include <QImageIOPlugin>
|
#include <QImageIOPlugin>
|
||||||
|
|
||||||
@ -29,9 +29,9 @@ class XCFHandler : public QImageIOHandler
|
|||||||
public:
|
public:
|
||||||
XCFHandler();
|
XCFHandler();
|
||||||
|
|
||||||
bool canRead() const Q_DECL_OVERRIDE;
|
bool canRead() const override;
|
||||||
bool read(QImage *image) Q_DECL_OVERRIDE;
|
bool read(QImage *image) override;
|
||||||
bool write(const QImage &image) Q_DECL_OVERRIDE;
|
bool write(const QImage &image) override;
|
||||||
|
|
||||||
static bool canRead(QIODevice *device);
|
static bool canRead(QIODevice *device);
|
||||||
};
|
};
|
||||||
@ -42,8 +42,8 @@ class XCFPlugin : public QImageIOPlugin
|
|||||||
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "xcf.json")
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QImageIOHandlerFactoryInterface" FILE "xcf.json")
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Capabilities capabilities(QIODevice *device, const QByteArray &format) const Q_DECL_OVERRIDE;
|
Capabilities capabilities(QIODevice *device, const QByteArray &format) const override;
|
||||||
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const Q_DECL_OVERRIDE;
|
QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // KIMG_XCF_H
|
#endif // KIMG_XCF_P_H
|
||||||
|
@ -19,6 +19,9 @@
|
|||||||
* <http://www.gnu.org/licenses/>.
|
* <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef FORMAT_ENUM_H
|
||||||
|
#define FORMAT_ENUM_H
|
||||||
|
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
|
|
||||||
// Generated from QImage::Format enum
|
// Generated from QImage::Format enum
|
||||||
@ -71,3 +74,4 @@ QString formatToString(QImage::Format format)
|
|||||||
QLatin1String(">");
|
QLatin1String(">");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
@ -32,29 +32,29 @@
|
|||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
QCoreApplication app(argc, argv);
|
QCoreApplication app(argc, argv);
|
||||||
QCoreApplication::addLibraryPath(QLatin1String(PLUGIN_DIR));
|
QCoreApplication::addLibraryPath(QStringLiteral(PLUGIN_DIR));
|
||||||
QCoreApplication::setApplicationName(QLatin1String("imageconverter"));
|
QCoreApplication::setApplicationName(QStringLiteral("imageconverter"));
|
||||||
QCoreApplication::setApplicationVersion(QLatin1String("1.01.01.0"));
|
QCoreApplication::setApplicationVersion(QStringLiteral("1.01.01.0"));
|
||||||
|
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
parser.setApplicationDescription(QLatin1String("Converts images from one format to another"));
|
parser.setApplicationDescription(QStringLiteral("Converts images from one format to another"));
|
||||||
parser.addHelpOption();
|
parser.addHelpOption();
|
||||||
parser.addVersionOption();
|
parser.addVersionOption();
|
||||||
parser.addPositionalArgument(QLatin1String("in"), QLatin1String("input image file"));
|
parser.addPositionalArgument(QStringLiteral("in"), QStringLiteral("input image file"));
|
||||||
parser.addPositionalArgument(QLatin1String("out"), QLatin1String("output image file"));
|
parser.addPositionalArgument(QStringLiteral("out"), QStringLiteral("output image file"));
|
||||||
QCommandLineOption informat(
|
QCommandLineOption informat(
|
||||||
QStringList() << QLatin1String("i") << QLatin1String("informat"),
|
QStringList() << QStringLiteral("i") << QStringLiteral("informat"),
|
||||||
QLatin1String("Image format for input file"),
|
QStringLiteral("Image format for input file"),
|
||||||
QLatin1String("format"));
|
QStringLiteral("format"));
|
||||||
parser.addOption(informat);
|
parser.addOption(informat);
|
||||||
QCommandLineOption outformat(
|
QCommandLineOption outformat(
|
||||||
QStringList() << QLatin1String("o") << QLatin1String("outformat"),
|
QStringList() << QStringLiteral("o") << QStringLiteral("outformat"),
|
||||||
QLatin1String("Image format for output file"),
|
QStringLiteral("Image format for output file"),
|
||||||
QLatin1String("format"));
|
QStringLiteral("format"));
|
||||||
parser.addOption(outformat);
|
parser.addOption(outformat);
|
||||||
QCommandLineOption listformats(
|
QCommandLineOption listformats(
|
||||||
QStringList() << QLatin1String("l") << QLatin1String("list"),
|
QStringList() << QStringLiteral("l") << QStringLiteral("list"),
|
||||||
QLatin1String("List supported image formats"));
|
QStringLiteral("List supported image formats"));
|
||||||
parser.addOption(listformats);
|
parser.addOption(listformats);
|
||||||
|
|
||||||
parser.process(app);
|
parser.process(app);
|
||||||
|
Reference in New Issue
Block a user