You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/chalk/plugins/viewplugins/scripting/chalkcore/krs_image.cpp

149 lines
4.6 KiB

/*
* Copyright (c) 2005 Cyrille Berger <cberger@cberger.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "krs_image.h"
#include <tdelocale.h>
#include <kis_colorspace_factory_registry.h>
#include <kis_image.h>
#include <kis_filter_strategy.h>
#include <kis_group_layer.h>
#include <kis_paint_layer.h>
#include <kis_meta_registry.h>
#include "krs_paint_layer.h"
namespace Kross {
namespace ChalkCore {
Image::Image(KisImageSP image, KisDoc* doc)
: Kross::Api::Class<Image>("ChalkImage"), m_image(image), m_doc(doc)
{
addFunction("getActivePaintLayer", &Image::getActivePaintLayer);
addFunction("getWidth", &Image::getWidth);
addFunction("getHeight", &Image::getHeight);
addFunction("convertToColorspace", &Image::convertToColorspace);
addFunction("createPaintLayer", &Image::createPaintLayer);
addFunction("colorSpaceId", &Image::colorSpaceId);
addFunction("scale", &Image::scale);
addFunction("resize", &Image::resize);
}
Image::~Image()
{
}
const TQString Image::getClassName() const {
return "Kross::ChalkCore::Image";
}
Kross::Api::Object::Ptr Image::getActivePaintLayer(Kross::Api::List::Ptr)
{
KisPaintLayer* activePaintLayer = dynamic_cast<KisPaintLayer*>(m_image->activeLayer().data());
if(activePaintLayer )
{
return new PaintLayer(activePaintLayer, m_doc);
} else {
throw Kross::Api::Exception::Ptr( new Kross::Api::Exception("The active layer is not paintable.") );
return 0;
}
}
Kross::Api::Object::Ptr Image::getWidth(Kross::Api::List::Ptr)
{
return new Kross::Api::Variant(m_image->width());
}
Kross::Api::Object::Ptr Image::getHeight(Kross::Api::List::Ptr)
{
return new Kross::Api::Variant(m_image->height());
}
Kross::Api::Object::Ptr Image::convertToColorspace(Kross::Api::List::Ptr args)
{
KisColorSpace * dstCS = KisMetaRegistry::instance()->csRegistry()->getColorSpace(KisID(Kross::Api::Variant::toString(args->item(0)), ""), "");
if(!dstCS)
{
throw Kross::Api::Exception::Ptr( new Kross::Api::Exception( i18n("Colorspace %0 is not available, please check your installation.").arg(Kross::Api::Variant::toString(args->item(0))) ) );
return 0;
}
m_image->convertTo(dstCS);
return 0;
}
Kross::Api::Object::Ptr Image::colorSpaceId(Kross::Api::List::Ptr )
{
return new Kross::Api::Variant( m_image->colorSpace()->id().id() );
}
Kross::Api::Object::Ptr Image::createPaintLayer(Kross::Api::List::Ptr args)
{
TQString name = Kross::Api::Variant::toString(args->item(0));
int opacity = Kross::Api::Variant::toInt(args->item(1));
opacity = CLAMP(opacity, 0, 255);
TQString csname;
if(args->count() > 2)
{
csname = Kross::Api::Variant::toString(args->item(2));
} else {
csname = m_image->colorSpace()->id().id();
}
KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getColorSpace(KisID(csname, ""), "");
KisPaintLayer* layer;
if(cs)
{
layer = new KisPaintLayer(m_image, name, opacity, cs);
} else {
layer = new KisPaintLayer(m_image, name, opacity);
}
layer->setVisible(true);
m_image->addLayer(layer, m_image->rootLayer(), 0);
return new PaintLayer(layer);
}
Kross::Api::Object::Ptr Image::scale(Kross::Api::List::Ptr args)
{
double cw = Kross::Api::Variant::toDouble(args->item(0));
double ch = Kross::Api::Variant::toDouble(args->item(1));
m_image->scale( cw, ch, 0, KisFilterStrategyRegistry::instance()->get( "Mitchell") );
return 0;
}
Kross::Api::Object::Ptr Image::resize(Kross::Api::List::Ptr args)
{
int nw = Kross::Api::Variant::toInt(args->item(0));
int nh = Kross::Api::Variant::toInt(args->item(1));
int x = 0;
int y = 0;
if(args->count() > 2)
{
x = Kross::Api::Variant::toInt(args->item(2));
y = Kross::Api::Variant::toInt(args->item(3));
}
m_image->resize( nw, nh, x, y );
return 0;
}
}
}