exiv2-sharp/glue/exiv2-exifthumb.cpp

152 строки
4.5 KiB
C++

/*
* exiv2-exifthumb.cpp
*
* Author(s):
* Stephane Delcroix (stephane@delcroix.org)
*
* Copyright (c) 2008 Novell, Inc
*
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
#include "exiv2-exifthumb.h"
#include "exiv2-exifthumb-private.h"
#include "exiv2-databuf-private.h"
#include "exiv2-urational-private.h"
#include <exiv2/error.hpp>
#include <exiv2/types.hpp>
#include <exiv2/exif.hpp>
G_BEGIN_DECLS
G_DEFINE_TYPE (Exiv2ExifThumb, exiv2_exifthumb, G_TYPE_OBJECT);
static void exiv2_exifthumb_finalize (GObject *gobject);
static void
exiv2_exifthumb_init (Exiv2ExifThumb *self)
{
Exiv2ExifThumbPrivate *priv;
self->priv = priv = EXIV2_EXIFTHUMB_GET_PRIVATE (self);
}
static void
exiv2_exifthumb_class_init (Exiv2ExifThumbClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = exiv2_exifthumb_finalize;
g_type_class_add_private (klass, sizeof (Exiv2ExifThumbPrivate));
}
static void
exiv2_exifthumb_finalize (GObject *gobject)
{
Exiv2ExifThumb *self = EXIV2_EXIFTHUMB (gobject);
if (self->priv->thumb) {
delete self->priv->thumb;
self->priv->thumb = NULL;
}
G_OBJECT_CLASS (exiv2_exifthumb_parent_class)->finalize (gobject);
}
const char*
exiv2_exifthumb_get_mimeType (Exiv2ExifThumb *self)
{
g_return_val_if_fail (EXIV2_IS_EXIFTHUMB (self), NULL);
return self->priv->thumb->mimeType ();
}
const char*
exiv2_exifthumb_get_extension (Exiv2ExifThumb *self)
{
g_return_val_if_fail (EXIV2_IS_EXIFTHUMB (self), NULL);
return self->priv->thumb->extension ();
}
glong
exiv2_exifthumb_writeFile (Exiv2ExifThumb *self, const char* path)
{
g_return_val_if_fail (EXIV2_IS_EXIFTHUMB (self), NULL);
return self->priv->thumb->writeFile (path);
}
Exiv2DataBuf*
exiv2_exifthumb_copy (Exiv2ExifThumb *self)
{
g_return_val_if_fail (EXIV2_IS_EXIFTHUMB (self), NULL);
Exiv2DataBuf *databuf;
databuf = EXIV2_DATABUF (g_object_new (EXIV2_TYPE_DATABUF, NULL));
databuf->priv->buf = self->priv->thumb->copy ();
return databuf;
}
void
exiv2_exifthumb_jpegThumbnailPath (Exiv2ExifThumb *self, const char* path, Exiv2URational *xres, Exiv2URational *yres, guint16 unit, GError **error)
{
g_return_if_fail (EXIV2_IS_EXIFTHUMB (self));
g_return_if_fail (EXIV2_IS_URATIONAL (xres));
g_return_if_fail (EXIV2_IS_URATIONAL (yres));
try {
self->priv->thumb->setJpegThumbnail (path, xres->priv->urational, yres->priv->urational, unit);
} catch (Exiv2::Error e) {
g_set_error (error, g_quark_from_string ("Exiv2"), e.code (), e.what ());
}
}
void
exiv2_exifthumb_jpegThumbnailPathSimple (Exiv2ExifThumb *self, const char* path, GError **error)
{
g_return_if_fail (EXIV2_IS_EXIFTHUMB (self));
try {
self->priv->thumb->setJpegThumbnail (path);
} catch (Exiv2::Error e) {
g_set_error (error, g_quark_from_string ("Exiv2"), e.code (), e.what ());
}
}
void
exiv2_exifthumb_jpegThumbnailBuf (Exiv2ExifThumb *self, const guint8 *buf, Exiv2URational *xres, Exiv2URational *yres, guint16 unit, glong n_buf)
{
g_return_if_fail (EXIV2_IS_EXIFTHUMB (self));
g_return_if_fail (EXIV2_IS_URATIONAL (xres));
g_return_if_fail (EXIV2_IS_URATIONAL (yres));
self->priv->thumb->setJpegThumbnail (buf, n_buf, xres->priv->urational, yres->priv->urational, unit);
}
void
exiv2_exifthumb_jpegThumbnailBufSimple (Exiv2ExifThumb *self, const guint8* buf, glong n_buf)
{
g_return_if_fail (EXIV2_IS_EXIFTHUMB (self));
self->priv->thumb->setJpegThumbnail (buf, n_buf);
}
void
exiv2_exifthumb_erase (Exiv2ExifThumb *self)
{
g_return_if_fail (EXIV2_IS_EXIFTHUMB (self));
self->priv->thumb->erase ();
}
G_END_DECLS