99 lines
2.6 KiB
C++
99 lines
2.6 KiB
C++
/*
|
|
* This file is part of RawTherapee.
|
|
*
|
|
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
|
|
*
|
|
* RawTherapee is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* RawTherapee is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with RawTherapee. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
//
|
|
// A class representing a 16 bit rgb image with separate planes and 16 byte aligned data
|
|
//
|
|
#pragma once
|
|
|
|
#include "imageio.h"
|
|
|
|
namespace rtengine
|
|
{
|
|
|
|
class Image8;
|
|
class Imagefloat;
|
|
|
|
class Image16 final : public IImage16, public ImageIO
|
|
{
|
|
|
|
public:
|
|
|
|
Image16();
|
|
Image16(int width, int height);
|
|
~Image16() override;
|
|
|
|
Image16* copy() const;
|
|
|
|
void getStdImage(const ColorTemp &ctemp, int tran, Imagefloat* image, PreviewProps pp) const override;
|
|
|
|
const char* getType() const override
|
|
{
|
|
return sImage16;
|
|
}
|
|
int getBPS() const override
|
|
{
|
|
return 8 * sizeof(unsigned short);
|
|
}
|
|
|
|
void getScanline(int row, unsigned char* buffer, int bps, bool isFloat = false) const override;
|
|
void setScanline(int row, const unsigned char* buffer, int bps, unsigned int numSamples) override;
|
|
|
|
// functions inherited from IImage16:
|
|
MyMutex& getMutex() override
|
|
{
|
|
return mutex();
|
|
}
|
|
|
|
cmsHPROFILE getProfile() const override
|
|
{
|
|
return getEmbeddedProfile();
|
|
}
|
|
|
|
int saveToFile(const Glib::ustring &fname) const override
|
|
{
|
|
return save(fname);
|
|
}
|
|
|
|
int saveAsPNG(const Glib::ustring &fname, int bps = -1) const override
|
|
{
|
|
return savePNG(fname, bps);
|
|
}
|
|
|
|
int saveAsJPEG(const Glib::ustring &fname, int quality = 100, int subSamp = 3) const override
|
|
{
|
|
return saveJPEG(fname, quality, subSamp);
|
|
}
|
|
|
|
int saveAsTIFF(const Glib::ustring &fname, int bps = -1, bool isFloat = false, bool uncompressed = false) const override
|
|
{
|
|
return saveTIFF(fname, bps, isFloat, uncompressed);
|
|
}
|
|
|
|
void setSaveProgressListener(ProgressListener* pl) override
|
|
{
|
|
setProgressListener(pl);
|
|
}
|
|
|
|
void ExecCMSTransform(cmsHTRANSFORM hTransform);
|
|
|
|
/* void ExecCMSTransform(cmsHTRANSFORM hTransform, const LabImage &labImage, int cx, int cy); */
|
|
};
|
|
|
|
}
|