2001-01-23 08:53:12 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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 Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2001-01-24 02:49:44 +08:00
|
|
|
|
2001-05-10 06:34:59 +08:00
|
|
|
#include "gimpcolortypes.h"
|
|
|
|
|
2001-01-23 08:53:12 +08:00
|
|
|
#include "gimpbilinear.h"
|
|
|
|
|
|
|
|
|
|
|
|
gdouble
|
|
|
|
gimp_bilinear (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
gdouble *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
x = fmod (x, 1.0);
|
|
|
|
y = fmod (y, 1.0);
|
2001-01-23 08:53:12 +08:00
|
|
|
|
|
|
|
if (x < 0.0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0.0)
|
|
|
|
y += 1.0;
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
m0 = (1.0 - x) * values[0] + x * values[1];
|
|
|
|
m1 = (1.0 - x) * values[2] + x * values[3];
|
2001-01-23 08:53:12 +08:00
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
return (1.0 - y) * m0 + y * m1;
|
2001-01-23 08:53:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
guchar
|
|
|
|
gimp_bilinear_8 (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
guchar *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
x = fmod (x, 1.0);
|
|
|
|
y = fmod (y, 1.0);
|
2001-01-23 08:53:12 +08:00
|
|
|
|
|
|
|
if (x < 0.0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0.0)
|
|
|
|
y += 1.0;
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
m0 = (1.0 - x) * values[0] + x * values[1];
|
|
|
|
m1 = (1.0 - x) * values[2] + x * values[3];
|
2001-01-23 08:53:12 +08:00
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
return (guchar) ((1.0 - y) * m0 + y * m1);
|
2001-01-23 08:53:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
guint16
|
|
|
|
gimp_bilinear_16 (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
guint16 *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
x = fmod (x, 1.0);
|
|
|
|
y = fmod (y, 1.0);
|
2001-01-23 08:53:12 +08:00
|
|
|
|
|
|
|
if (x < 0.0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0.0)
|
|
|
|
y += 1.0;
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
m0 = (1.0 - x) * values[0] + x * values[1];
|
|
|
|
m1 = (1.0 - x) * values[2] + x * values[3];
|
2001-01-23 08:53:12 +08:00
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
return (guint16) ((1.0 - y) * m0 + y * m1);
|
2001-01-23 08:53:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
guint32
|
|
|
|
gimp_bilinear_32 (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
guint32 *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
x = fmod (x, 1.0);
|
|
|
|
y = fmod (y, 1.0);
|
2001-01-23 08:53:12 +08:00
|
|
|
|
|
|
|
if (x < 0.0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0.0)
|
|
|
|
y += 1.0;
|
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
m0 = (1.0 - x) * values[0] + x * values[1];
|
|
|
|
m1 = (1.0 - x) * values[2] + x * values[3];
|
2001-01-23 08:53:12 +08:00
|
|
|
|
2002-11-21 05:29:16 +08:00
|
|
|
return (guint32) ((1.0 - y) * m0 + y * m1);
|
2001-01-23 08:53:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GimpRGB
|
|
|
|
gimp_bilinear_rgb (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GimpRGB *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
gdouble ix, iy;
|
|
|
|
GimpRGB v;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
|
|
|
x = fmod(x, 1.0);
|
|
|
|
y = fmod(y, 1.0);
|
|
|
|
|
|
|
|
if (x < 0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0)
|
|
|
|
y += 1.0;
|
|
|
|
|
|
|
|
ix = 1.0 - x;
|
|
|
|
iy = 1.0 - y;
|
|
|
|
|
|
|
|
/* Red */
|
|
|
|
|
|
|
|
m0 = ix * values[0].r + x * values[1].r;
|
|
|
|
m1 = ix * values[2].r + x * values[3].r;
|
|
|
|
|
|
|
|
v.r = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
/* Green */
|
|
|
|
|
|
|
|
m0 = ix * values[0].g + x * values[1].g;
|
|
|
|
m1 = ix * values[2].g + x * values[3].g;
|
|
|
|
|
|
|
|
v.g = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
/* Blue */
|
|
|
|
|
|
|
|
m0 = ix * values[0].b + x * values[1].b;
|
|
|
|
m1 = ix * values[2].b + x * values[3].b;
|
|
|
|
|
|
|
|
v.b = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpRGB
|
|
|
|
gimp_bilinear_rgba (gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
GimpRGB *values)
|
|
|
|
{
|
|
|
|
gdouble m0, m1;
|
|
|
|
gdouble ix, iy;
|
|
|
|
GimpRGB v;
|
|
|
|
|
|
|
|
g_assert (values != NULL);
|
|
|
|
|
|
|
|
x = fmod (x, 1.0);
|
|
|
|
y = fmod (y, 1.0);
|
|
|
|
|
|
|
|
if (x < 0)
|
|
|
|
x += 1.0;
|
|
|
|
if (y < 0)
|
|
|
|
y += 1.0;
|
|
|
|
|
|
|
|
ix = 1.0 - x;
|
|
|
|
iy = 1.0 - y;
|
|
|
|
|
|
|
|
/* Red */
|
|
|
|
|
|
|
|
m0 = ix * values[0].r + x * values[1].r;
|
|
|
|
m1 = ix * values[2].r + x * values[3].r;
|
|
|
|
|
|
|
|
v.r = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
/* Green */
|
|
|
|
|
|
|
|
m0 = ix * values[0].g + x * values[1].g;
|
|
|
|
m1 = ix * values[2].g + x * values[3].g;
|
|
|
|
|
|
|
|
v.g = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
/* Blue */
|
|
|
|
|
|
|
|
m0 = ix * values[0].b + x * values[1].b;
|
|
|
|
m1 = ix * values[2].b + x * values[3].b;
|
|
|
|
|
|
|
|
v.b = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
/* Alpha */
|
|
|
|
|
|
|
|
m0 = ix * values[0].a + x * values[1].a;
|
|
|
|
m1 = ix * values[2].a + x * values[3].a;
|
|
|
|
|
|
|
|
v.a = iy * m0 + y * m1;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|