Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Plugins (#4)
* Initial checkin of eps kdelib plugin - just for testing - https://api.kde.org/frameworks/kimageformats/html/index.html * The initial import of KImageFormats from the KDE project Imported from https://github.com/KDE/kimageformats - v5.39.0-rc1 - a65b504 * CMake definitions for building plugins * Adding missing license for KDE KImageFormats plugins * Supported formats extended * MacOS plugin support
- Loading branch information
Showing
with
9,246 additions
and 21 deletions.
- +510 −0 LICENSE-PLUGINS-KIMAGEFORMATS
- +39 −0 build/cmake/CMakeLists.txt
- +6 −0 build/cmake/mac/deploy.sh
- +9 −0 build/cmake/mac/support/MacOSXBundleInfo.plist.in
- +15 −0 src/plugins/kimageformats/AUTHORS
- +510 −0 src/plugins/kimageformats/COPYING.LIB
- +362 −0 src/plugins/kimageformats/eps.cpp
- +4 −0 src/plugins/kimageformats/eps.json
- +38 −0 src/plugins/kimageformats/eps_p.h
- +240 −0 src/plugins/kimageformats/exr.cpp
- +4 −0 src/plugins/kimageformats/exr.json
- +37 −0 src/plugins/kimageformats/exr_p.h
- +416 −0 src/plugins/kimageformats/gimp_p.h
- +238 −0 src/plugins/kimageformats/hdr.cpp
- +21 −0 src/plugins/kimageformats/hdr_p.h
- +88 −0 src/plugins/kimageformats/kra.cpp
- +38 −0 src/plugins/kimageformats/kra.h
- +5 −0 src/plugins/kimageformats/kra.json
- +87 −0 src/plugins/kimageformats/ora.cpp
- +38 −0 src/plugins/kimageformats/ora.h
- +5 −0 src/plugins/kimageformats/ora.json
- +692 −0 src/plugins/kimageformats/pcx.cpp
- +4 −0 src/plugins/kimageformats/pcx.json
- +37 −0 src/plugins/kimageformats/pcx_p.h
- +474 −0 src/plugins/kimageformats/pic.cpp
- +4 −0 src/plugins/kimageformats/pic.json
- +202 −0 src/plugins/kimageformats/pic_p.h
- +322 −0 src/plugins/kimageformats/psd.cpp
- +4 −0 src/plugins/kimageformats/psd.json
- +37 −0 src/plugins/kimageformats/psd_p.h
- +304 −0 src/plugins/kimageformats/ras.cpp
- +4 −0 src/plugins/kimageformats/ras.json
- +38 −0 src/plugins/kimageformats/ras_p.h
- +739 −0 src/plugins/kimageformats/rgb.cpp
- +4 −0 src/plugins/kimageformats/rgb.json
- +38 −0 src/plugins/kimageformats/rgb_p.h
- +223 −0 src/plugins/kimageformats/rle_p.h
- +448 −0 src/plugins/kimageformats/tga.cpp
- +4 −0 src/plugins/kimageformats/tga.json
- +37 −0 src/plugins/kimageformats/tga_p.h
- +2,712 −0 src/plugins/kimageformats/xcf.cpp
- +4 −0 src/plugins/kimageformats/xcf.json
- +49 −0 src/plugins/kimageformats/xcf_p.h
- +9 −0 src/resource/text/aboutKImageFormats.html
- +1 −0 src/resource/vookiimageviewer.qrc
- +3 −0 src/ui/AboutComponentsDialog.cpp
- +5 −0 src/ui/forms/AboutComponentsDialog.ui
- +138 −21 src/ui/forms/AboutSupportedFormatsDialog.ui
@@ -1,3 +1,9 @@ | ||
#!/bin/sh | ||
|
||
target=VookiImageViewer.app/Contents/PlugIns/imageformats/ | ||
|
||
~/Qt/5.9.1/clang_64/bin/macdeployqt build/VookiImageViewer.app -always-overwrite | ||
|
||
cd build | ||
cp -f libvooki_kimg_pcx.so libvooki_kimg_pic.so libvooki_kimg_psd.so libvooki_kimg_ras.so libvooki_kimg_rgb.so libvooki_kimg_tga.so libvooki_kimg_xcf.so $target | ||
cp -f ../../../../src/plugins/kimageformats/psd.json ../../../../src/plugins/kimageformats/tga.json ../../../../src/plugins/kimageformats/pcx.json ../../../../src/plugins/kimageformats/ras.json ../../../../src/plugins/kimageformats/xcf.json ../../../../src/plugins/kimageformats/pic.json ../../../../src/plugins/kimageformats/rgb.json $target |
@@ -0,0 +1,15 @@ | ||
Sirtaj Singh Kang <taj@kde.org> -- kimgio and jpeg, tiff, png, krl readers | ||
Dirk Schoenberger <> -- eps, netpbm readers | ||
Torben Weis <weis@kde.org> -- XV format reader/writer | ||
Thomas Tanghus <tanghus@kde.org> -- PNG writer | ||
Antonio Larossa <larossa@kde.org> -- initial version of KRL reader | ||
Sven Wiegand <SWiegand@tfh-berlin.de> -- eps output filter (from KSnapshot) | ||
Dominik Seichter <domseichter@web.de> -- TGA format read/write support | ||
Nadeem Hasan <nhasan@kde.org> -- PCX format read/write support | ||
Melchior Franz <mfranz@kde.org> -- SGI format read/write support, port of XCF qimgio | ||
Allen Barnett <allen@lignumcomputing.com> -- XCF format read support (qimgio) | ||
Ignacio Castaño <castano@ludicon.com> -- DDS and PDS format reader. | ||
Christoph Hormann <chris_hormann@gmx.de> -- HDR format read support. | ||
Michael Ritzert <kde@ritzert.de> -- JPEG 2000 format read/write support | ||
Troy Unrau <troy@kde.org> -- Sun RASter read support | ||
œ |
Oops, something went wrong.