mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
Add a port of Photivo, a free and open source photo processor.
Unfortunately, I had to deprive it from using OpenMP features, since `compiler:openmp' pulls in GCC and libstdc++ which causes linking problems due to incompatible std::string ABI. Also, while Qt 4.x should be supported, it does not build against, so sadly it's Qt 5.x based only for now. WWW: http://photivo.org/
This commit is contained in:
parent
fa25b1e8f8
commit
5349f4755a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=428684
@ -769,6 +769,7 @@
|
||||
SUBDIR += pfstools
|
||||
SUBDIR += pgplot
|
||||
SUBDIR += pho
|
||||
SUBDIR += photivo
|
||||
SUBDIR += photopc
|
||||
SUBDIR += phototonic
|
||||
SUBDIR += php-facedetect
|
||||
|
44
graphics/photivo/Makefile
Normal file
44
graphics/photivo/Makefile
Normal file
@ -0,0 +1,44 @@
|
||||
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= photivo
|
||||
PORTVERSION= 0.0.2015.03.21
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/${PORTNAME}/
|
||||
DISTNAME= source-archive
|
||||
DIST_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= danfe@FreeBSD.org
|
||||
COMMENT= Free and open source photo processor
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
LIB_DEPENDS= liblcms2.so:graphics/lcms2 \
|
||||
libexiv2.so:graphics/exiv2 \
|
||||
liblqr-1.so:graphics/liblqr-1 \
|
||||
liblensfun.so:graphics/lensfun \
|
||||
libGraphicsMagick.so:graphics/GraphicsMagick \
|
||||
libfftw3.so:math/fftw3
|
||||
|
||||
USES= cmake compiler:c++0x desktop-file-utils dos2unix \
|
||||
gettext-runtime jpeg pkgconfig zip
|
||||
USE_GNOME= glib20
|
||||
USE_QT5= qmake_build buildtools_build core gui network widgets
|
||||
DOS2UNIX_FILES= Sources/ptImage.cpp
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's,#define cimg_use_openmp 1,//&,' \
|
||||
${WRKSRC}/Sources/ptCimg.cpp \
|
||||
${WRKSRC}/Sources/ptImage_Pyramid.cpp
|
||||
@${REINPLACE_CMD} -e '/#include "\.\.\/ptImage\.h"/ \
|
||||
{ x ; s/.*/#include <cmath>/ ; H ; x ; }' \
|
||||
${WRKSRC}/Sources/filters/ptFilter_EAWavelets.cpp \
|
||||
${WRKSRC}/Sources/filters/ptFilter_FilmGrain.cpp \
|
||||
${WRKSRC}/Sources/filters/ptFilter_HighpassSharpen.cpp \
|
||||
${WRKSRC}/Sources/filters/ptFilter_PyramidDenoise.cpp \
|
||||
${WRKSRC}/Sources/filters/ptFilter_StdCurve.cpp \
|
||||
${WRKSRC}/Sources/filters/ptFilter_WaveletDenoise.cpp
|
||||
|
||||
.include <bsd.port.mk>
|
3
graphics/photivo/distinfo
Normal file
3
graphics/photivo/distinfo
Normal file
@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1458713356
|
||||
SHA256 (photivo/source-archive.zip) = 643a9a5a93336157c61d805e452bd4b7f46ce3e432a94ec708af0a043aa6d573
|
||||
SIZE (photivo/source-archive.zip) = 26160589
|
20
graphics/photivo/files/patch-CMakeLists.txt
Normal file
20
graphics/photivo/files/patch-CMakeLists.txt
Normal file
@ -0,0 +1,20 @@
|
||||
--- CMakeLists.txt.orig 2016-03-22 03:34:54 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -140,7 +140,7 @@ message( "Build Adobe profiles creator :
|
||||
|
||||
set( CMAKE_CXX_FLAGS "" )
|
||||
set( CMAKE_C_FLAGS "" )
|
||||
-set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -fopenmp -std=gnu++0x" )
|
||||
+set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -funroll-loops -std=gnu++0x" )
|
||||
set( CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -std=gnu++0x" )
|
||||
set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -std=gnu++0x" )
|
||||
|
||||
@@ -488,8 +488,6 @@ else( NOT ${CMAKE_SYSTEM_PROCESSOR} OR $
|
||||
"-march=i686 -ffast-math -DAPPVERSION='${APPVERSION}' -DPREFIX=${CMAKE_INSTALL_PREFIX}" )
|
||||
endif( NOT ${CMAKE_SYSTEM_PROCESSOR} OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64" )
|
||||
|
||||
-set_target_properties( photivo PROPERTIES LINK_FLAGS "-lgomp" )
|
||||
-
|
||||
target_link_libraries( photivo
|
||||
${GLIB2_LIBRARIES}
|
||||
${QT_LIBRARIES}
|
20
graphics/photivo/files/patch-Sources_ptDefines.h
Normal file
20
graphics/photivo/files/patch-Sources_ptDefines.h
Normal file
@ -0,0 +1,20 @@
|
||||
--- Sources/ptDefines.h.orig 2016-03-22 03:34:55 UTC
|
||||
+++ Sources/ptDefines.h
|
||||
@@ -33,6 +33,8 @@
|
||||
#define __STDC_LIMIT_MACROS
|
||||
#include <cstdint>
|
||||
|
||||
+#include <cstdlib>
|
||||
+
|
||||
// disable the file manager
|
||||
// #define PT_WITHOUT_FILEMGR
|
||||
|
||||
@@ -63,7 +65,7 @@ std::unique_ptr<T> make_unique(Args&& ..
|
||||
namespace pt {
|
||||
namespace detail {
|
||||
struct c_deleter {
|
||||
- void operator()(void* ptr) { std::free(ptr); }
|
||||
+ void operator()(void* ptr) { free(ptr); }
|
||||
};
|
||||
}
|
||||
template<typename T>
|
33
graphics/photivo/files/patch-Sources_ptImage.cpp
Normal file
33
graphics/photivo/files/patch-Sources_ptImage.cpp
Normal file
@ -0,0 +1,33 @@
|
||||
--- Sources/ptImage.cpp.orig 2016-03-22 03:34:55 UTC
|
||||
+++ Sources/ptImage.cpp
|
||||
@@ -40,8 +40,11 @@
|
||||
#include <QString>
|
||||
#include <QTime>
|
||||
|
||||
-#include <algorithm>
|
||||
+#ifdef __GLIBCXX__
|
||||
#include <parallel/algorithm>
|
||||
+#else
|
||||
+#include <algorithm>
|
||||
+#endif
|
||||
#include <stack>
|
||||
|
||||
// std stuff needs to be declared apparently for jpeglib
|
||||
@@ -1718,7 +1721,7 @@ ptImage* ptImage::ApplyCurve(const ptCur
|
||||
if (ChannelMask & 1) Channel.push_back(0);
|
||||
if (ChannelMask & 2) Channel.push_back(1);
|
||||
if (ChannelMask & 4) Channel.push_back(2);
|
||||
- __gnu_parallel::for_each (m_Data.begin(), m_Data.end(), [&](TPixel16 &Pixel) {
|
||||
+ std::for_each (m_Data.begin(), m_Data.end(), [&](TPixel16 &Pixel) {
|
||||
std::for_each (Channel.begin(), Channel.end(), [&](const short &Value){
|
||||
Pixel[Value] = Curve->Curve[ Pixel[Value] ];
|
||||
});
|
||||
@@ -1742,7 +1745,7 @@ ptImage* ptImage::ApplyLByHueCurve(const
|
||||
// neutral value for a* and b* channel
|
||||
const float WPH = 0x8080;
|
||||
|
||||
- __gnu_parallel::for_each (m_Data.begin(), m_Data.end(), [&](TPixel16 &Pixel) {
|
||||
+ std::for_each (m_Data.begin(), m_Data.end(), [&](TPixel16 &Pixel) {
|
||||
// Factor by hue
|
||||
float ValueA = (float)Pixel[1]-WPH;
|
||||
float ValueB = (float)Pixel[2]-WPH;
|
8
graphics/photivo/pkg-descr
Normal file
8
graphics/photivo/pkg-descr
Normal file
@ -0,0 +1,8 @@
|
||||
Photivo is a multi-platform photo processor for raw and bitmap images with
|
||||
16-bit precision.
|
||||
|
||||
Photivo tries to give the user as much control as possible to express their
|
||||
creativity and to allow flexible adjustments for the various needs in
|
||||
photography.
|
||||
|
||||
WWW: http://photivo.org/
|
493
graphics/photivo/pkg-plist
Normal file
493
graphics/photivo/pkg-plist
Normal file
@ -0,0 +1,493 @@
|
||||
bin/photivo
|
||||
bin/ptClear
|
||||
share/applications/photivo.desktop
|
||||
share/pixmaps/photivo-appicon.png
|
||||
%%DATADIR%%/ChannelMixers/BlueChannel_BW.ptm
|
||||
%%DATADIR%%/ChannelMixers/Generic_BW.ptm
|
||||
%%DATADIR%%/ChannelMixers/GreenChannel_BW.ptm
|
||||
%%DATADIR%%/ChannelMixers/HighContrast_BW.ptm
|
||||
%%DATADIR%%/ChannelMixers/IR_ChannelSwitch.ptm
|
||||
%%DATADIR%%/ChannelMixers/Luminance.ptm
|
||||
%%DATADIR%%/ChannelMixers/NormalContrast_BW.ptm
|
||||
%%DATADIR%%/ChannelMixers/RedChannel_BW.ptm
|
||||
%%DATADIR%%/Curves/Astia.ptc
|
||||
%%DATADIR%%/Curves/Base/Canon.ptc
|
||||
%%DATADIR%%/Curves/Base/DarkContrast.ptc
|
||||
%%DATADIR%%/Curves/Base/FotogenicV41.ptc
|
||||
%%DATADIR%%/Curves/Base/FotogenicV42.ptc
|
||||
%%DATADIR%%/Curves/Base/Kodak.ptc
|
||||
%%DATADIR%%/Curves/Base/Leica.ptc
|
||||
%%DATADIR%%/Curves/Base/Minolta.ptc
|
||||
%%DATADIR%%/Curves/Base/Nikon.ptc
|
||||
%%DATADIR%%/Curves/Base/Olympus.ptc
|
||||
%%DATADIR%%/Curves/Base/Panasonic.ptc
|
||||
%%DATADIR%%/Curves/Base/Pentax.ptc
|
||||
%%DATADIR%%/Curves/Base/Sony.ptc
|
||||
%%DATADIR%%/Curves/EV3V42.ptc
|
||||
%%DATADIR%%/Curves/Optima.ptc
|
||||
%%DATADIR%%/Curves/PointAndShootV41.ptc
|
||||
%%DATADIR%%/Curves/Reala.ptc
|
||||
%%DATADIR%%/Curves/Velvia.ptc
|
||||
%%DATADIR%%/LensfunDatabase/Do not delete.txt
|
||||
%%DATADIR%%/Presets/Latest.pts
|
||||
%%DATADIR%%/Presets/MakeFancy.pts
|
||||
%%DATADIR%%/Presets/Neutral_absolute.pts
|
||||
%%DATADIR%%/Presets/Neutral_ufraw.pts
|
||||
%%DATADIR%%/Presets/vignette.pts
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS-1Ds_Mark_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_20D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_30D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_350D_DIGITAL.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_400D_DIGITAL.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_40D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_450D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_500D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_50D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_550D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_5D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_5D_Mark_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_60D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_7D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_DIGITAL_REBEL_XSi.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_DIGITAL_REBEL_XT.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_DIGITAL_REBEL_XTi.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_Kiss_Digital_N.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_Kiss_Digital_X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_Kiss_Digital_X2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_Kiss_Digital_X3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_Kiss_Digital_X4.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_REBEL_T1i.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_EOS_REBEL_T2i.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_PowerShot_G12.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_PowerShot_S60.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Canon_PowerShot_S90.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Elphel_353E.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/KODAK_EASYSHARE_Z1015_IS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_COOLPIX_P7000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D3000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D300s.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D3100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D40X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D5000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D60.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D7000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/NIKON_D90.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/OLYMPUS_E-500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/OLYMPUS_E-PL1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/OLYMPUS_SP570UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/PENTAX_645D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/PENTAX_K-5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/PENTAX_K-7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/PENTAX_K-x.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-FZ100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-FZ40.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-G1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-G2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-GF1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-LX3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/Panasonic_DMC-LX5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/SONY_DSLR-A100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/SONY_DSLR-A200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/SONY_DSLR-A550.icc
|
||||
%%DATADIR%%/Profiles/Camera/Enhanced/SONY_DSLR-A700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Flat/FlatProfile.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/AGFAPHOTO_DC-833m.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Apple_QuickTake.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CASIO_EX-S20.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CASIO_EX-Z10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CASIO_EX-Z750.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CINE.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CINE_650.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/CINE_660.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1DS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D_Mark_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D_Mark_III.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D_Mark_II_N.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D_Mark_IV.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1D_X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1Ds_Mark_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS-1Ds_Mark_III.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_1000D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_10D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_1100D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_20D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_20Da.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_300D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_30D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_350D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_400D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_40D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_450D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_500D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_50D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_550D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_5D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_5D_Mark_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_5D_Mark_III.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_600D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_60D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_650D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_6D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_7D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_D2000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_D30.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_D60.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_D6000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_EOS_M.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A470.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A50.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A530.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A610.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A620.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A630.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A640.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A650.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_A720.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G11.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G12.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G15.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G1_X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_G9.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_Pro1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_Pro70.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_Pro90.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S110.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S30.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S3_IS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S40.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S45.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S50.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S60.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S70.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S90.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_S95.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_SX110_IS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_SX1_IS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_SX220.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Canon_PowerShot_SX50_HS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Contax_N_Digital.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/EPSON_R-D1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_E550.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_E900.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_F5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_F6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_F7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_F77.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_F8.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_HS10_HS11.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_HS20EXR.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_HS3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_IS-1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_IS_Pro.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S100FS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S200EXR.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S20Pro.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S2Pro.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S3Pro.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5600.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S5Pro.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S7000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S9000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S9100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S9500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_S9600.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_X-E1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_X-Pro1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_X-S1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_X10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_X100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/FUJIFILM_XF1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Imacon_Ixpress.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_DCS420.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_DCS460.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EASYSHARE_Z1015.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EOSDCS1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EOSDCS3B.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EasyShare_Z980.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EasyShare_Z981.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_EasyShare_Z990.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_NC2000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_P712.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_P850.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/KODAK_P880.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS315C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS330C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS520C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS560C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS620C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS620X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS660C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS720X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS760C.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS_Pro_14.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS_Pro_14nx.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_DCS_Pro_SLR.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_ProBack.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Kodak_ProBack645.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_D-LUX2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_D-LUX3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_D-LUX_4.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_D-LUX_5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_D-LUX_6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_DIGILUX_2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_DIGILUX_3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_V-LUX1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_V-LUX_2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_V-LUX_3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/LEICA_V-LUX_4.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf_Aptus_54S.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf_Aptus_65.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf_Aptus_75.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf_CMost.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Leaf_Valeo_6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/MINOLTA_DYNAX_5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/MINOLTA_DYNAX_7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/MINOLTA_DiMAGE_A200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/MOTOROLA_PIXL.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Mamiya_ZD.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Micron_2010.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_7Hi.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_A1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_A2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Minolta_DiMAGE_Z2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_1_.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_1_V2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_COOLPIX_P6000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_COOLPIX_P7000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_COOLPIX_P7100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_COOLPIX_P7700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D1H.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D1X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D2H.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D2X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D300.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3S.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D3X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D4.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D40.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D40X.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D50.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D5000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D5100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D60.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D600.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D70.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D7000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D80.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D800.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_D90.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E2100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E2500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E3200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E4300.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E4500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E5000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E5400.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E5700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E8400.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E8700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E8800.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E950.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/NIKON_E995.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_C5050.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_C5060.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_C70.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_C7070.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_C80.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-20.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-30.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-300.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-330.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-400.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-410.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-420.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-450.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-500.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-510.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-520.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-600.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-620.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-M5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-P1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-P2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-P3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PL1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PL1s.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PL2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PL3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PL5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PM1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_E-PM2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP350.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP500UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP510UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP550UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP560UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_SP570UZ.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_XZ-1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/OLYMPUS_XZ-2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_645D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-5_II.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-m.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-r.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K-x.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K10D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K2000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K200D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX_K20D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX__ist_D.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX__ist_DL.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX__ist_DL2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX__ist_DS.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/PENTAX__ist_DS2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FX150.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ150.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ18.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ200.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ28.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ30.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ4.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ50.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-FZ8.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-G1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-G10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-G2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-G3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-G5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GF1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GF2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GF3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GF5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GH1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GH2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GH3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-GX1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-L1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-L10.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LC1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LX1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LX2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LX3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LX5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Panasonic_DMC-LX7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_H_20.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_H_25.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_P40.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_P65.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_P_2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_P_30.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Phase_One_P_45.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/RED_ONE.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_EX1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_EX2F.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_GX-1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_NX.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_NX1000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_NX2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_S85.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SAMSUNG_WB2000.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSC-F828.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSC-R1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSC-RX1.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSC-RX100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSC-V3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A100.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A2.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A290.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A300.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A330.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A350.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A380.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A390.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A450.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A580.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A700.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A850.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_DSLR-A900.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-3.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-5.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-5N.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-5R.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-6.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX-7.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_NEX.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A33.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A35.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A37.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A55.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A57.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A65.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/SONY_SLT-A77.icc
|
||||
%%DATADIR%%/Profiles/Camera/Standard/Sinar.icc
|
||||
%%DATADIR%%/Profiles/Output/AdobeRGBlinear.icc
|
||||
%%DATADIR%%/Profiles/Output/ProPhotoRGBlinear.icc
|
||||
%%DATADIR%%/Profiles/Output/WideGamutRGBlinear.icc
|
||||
%%DATADIR%%/Profiles/Output/sRGB.icc
|
||||
%%DATADIR%%/Profiles/Output/sRGBlinear.icc
|
||||
%%DATADIR%%/Profiles/Preview/sRGB.icc
|
||||
%%DATADIR%%/Themes/50Grey.ptheme
|
||||
%%DATADIR%%/Themes/DarkGrey.ptheme
|
||||
%%DATADIR%%/Themes/Night.ptheme
|
||||
%%DATADIR%%/Themes/Photivo.linux.qss
|
||||
%%DATADIR%%/Themes/Photivo.qss
|
||||
%%DATADIR%%/Themes/Photivo.windows.qss
|
||||
%%DATADIR%%/Themes/PhotivoShapeOnly.qss
|
||||
%%DATADIR%%/Themes/ShapeOnly.ptheme
|
||||
%%DATADIR%%/Translations/photivo_Czech.qm
|
||||
%%DATADIR%%/Translations/photivo_Czech.ts
|
||||
%%DATADIR%%/Translations/photivo_Danish.qm
|
||||
%%DATADIR%%/Translations/photivo_Danish.ts
|
||||
%%DATADIR%%/Translations/photivo_Dutch.qm
|
||||
%%DATADIR%%/Translations/photivo_Dutch.ts
|
||||
%%DATADIR%%/Translations/photivo_French.qm
|
||||
%%DATADIR%%/Translations/photivo_French.ts
|
||||
%%DATADIR%%/Translations/photivo_German.qm
|
||||
%%DATADIR%%/Translations/photivo_German.ts
|
||||
%%DATADIR%%/Translations/photivo_Italian.qm
|
||||
%%DATADIR%%/Translations/photivo_Italian.ts
|
||||
%%DATADIR%%/Translations/photivo_Polish.qm
|
||||
%%DATADIR%%/Translations/photivo_Polish.ts
|
||||
%%DATADIR%%/Translations/photivo_Russian.qm
|
||||
%%DATADIR%%/Translations/photivo_Russian.ts
|
||||
%%DATADIR%%/Translations/photivo_Spanish.qm
|
||||
%%DATADIR%%/Translations/photivo_Spanish.ts
|
||||
%%DATADIR%%/UISettings/default.ptu
|
Loading…
Reference in New Issue
Block a user