Blame operations/common/gegl-buffer-save-op.c

Packit Service 2781ba
/* This file is an image processing operation for GEGL
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is free software; you can redistribute it and/or
Packit Service 2781ba
 * modify it under the terms of the GNU Lesser General Public
Packit Service 2781ba
 * License as published by the Free Software Foundation; either
Packit Service 2781ba
 * version 3 of the License, or (at your option) any later version.
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is distributed in the hope that it will be useful,
Packit Service 2781ba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2781ba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2781ba
 * Lesser General Public License for more details.
Packit Service 2781ba
 *
Packit Service 2781ba
 * You should have received a copy of the GNU Lesser General Public
Packit Service 2781ba
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit Service 2781ba
 *
Packit Service 2781ba
 * Copyright 2010 Martin Nordholts <martinn@src.gnome.org>
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#include "config.h"
Packit Service 2781ba
#include <glib/gi18n-lib.h>
Packit Service 2781ba
Packit Service 2781ba
#ifdef GEGL_CHANT_PROPERTIES
Packit Service 2781ba
Packit Service 2781ba
gegl_chant_file_path (path, _("File"), "/tmp/gegl-buffer.gegl", _("Target file path to write GeglBuffer to."))
Packit Service 2781ba
Packit Service 2781ba
#else
Packit Service 2781ba
Packit Service 2781ba
#define GEGL_CHANT_TYPE_SINK
Packit Service 2781ba
#define GEGL_CHANT_C_FILE       "gegl-buffer-save-op.c"
Packit Service 2781ba
Packit Service 2781ba
#include "gegl-chant.h"
Packit Service 2781ba
Packit Service 2781ba
Packit Service 2781ba
static gboolean
Packit Service 2781ba
gegl_buffer_save_op_process (GeglOperation       *operation,
Packit Service 2781ba
                             GeglBuffer          *input,
Packit Service 2781ba
                             const GeglRectangle *result,
Packit Service 2781ba
                             gint                 level)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
Packit Service 2781ba
Packit Service 2781ba
  gegl_buffer_save (input, o->path, result);
Packit Service 2781ba
Packit Service 2781ba
  return TRUE;
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_chant_class_init (GeglChantClass *klass)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglOperationClass     *operation_class;
Packit Service 2781ba
  GeglOperationSinkClass *sink_class;
Packit Service 2781ba
Packit Service 2781ba
  operation_class = GEGL_OPERATION_CLASS (klass);
Packit Service 2781ba
  sink_class      = GEGL_OPERATION_SINK_CLASS (klass);
Packit Service 2781ba
Packit Service 2781ba
  sink_class->process    = gegl_buffer_save_op_process;
Packit Service 2781ba
  sink_class->needs_full = TRUE;
Packit Service 2781ba
Packit Service 2781ba
  gegl_operation_class_set_keys (operation_class,
Packit Service 2781ba
    "name"       , "gegl:gegl-buffer-save",
Packit Service 2781ba
    "categories" , "hidden",
Packit Service 2781ba
    "description", _("GeglBuffer file writer."),
Packit Service 2781ba
    NULL);
Packit Service 2781ba
Packit Service 2781ba
  gegl_extension_handler_register_saver (".gegl", "gegl:gegl-buffer-save");
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
#endif