gimp/pdb/groups/pattern.pdb

131 lines
3.7 KiB
Plaintext
Raw Normal View History

# GIMP - The GNU Image Manipulation Program
2004-09-29 06:01:21 +08:00
# Copyright (C) 1995 Spencer Kimball and Peter Mattis
# This program is free software: you can redistribute it and/or modify
2004-09-29 06:01:21 +08:00
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
2004-09-29 06:01:21 +08:00
# (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 General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2004-09-29 06:01:21 +08:00
# "Perlized" from C source by Manish Singh <yosh@gimp.org>
sub pattern_get_info {
$blurb = 'Retrieve information about the specified pattern.';
2004-09-29 06:01:21 +08:00
$help = <<'HELP';
This procedure retrieves information about the specified pattern.
This includes the pattern extents (width and height).
HELP
&mitch_pdb_misc('2004', '2.2');
2004-09-29 06:01:21 +08:00
@inargs = (
{ name => 'name', type => 'string', non_empty => 1,
desc => 'The pattern name.' }
2004-09-29 06:01:21 +08:00
);
@outargs = (
{ name => 'width', type => 'int32', void_ret => 1,
2004-09-29 06:01:21 +08:00
desc => "The pattern width" },
{ name => 'height', type => 'int32',
2004-09-29 06:01:21 +08:00
desc => "The pattern height" },
{ name => 'bpp', type => 'int32',
2004-09-29 06:01:21 +08:00
desc => "The pattern bpp" }
);
%invoke = (
code => <<'CODE'
2004-09-29 06:01:21 +08:00
{
GimpPattern *pattern = gimp_pdb_get_pattern (gimp, name, error);
2004-09-29 06:01:21 +08:00
tools/pdbgen/pdb/brush.pdb tools/pdbgen/pdb/brushes.pdb 2006-03-15 Michael Natterer <mitch@gimp.org> * tools/pdbgen/pdb/brush.pdb * tools/pdbgen/pdb/brushes.pdb * tools/pdbgen/pdb/context.pdb * tools/pdbgen/pdb/drawable.pdb * tools/pdbgen/pdb/drawable_transform.pdb * tools/pdbgen/pdb/gradient.pdb * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/image.pdb * tools/pdbgen/pdb/palette.pdb * tools/pdbgen/pdb/palettes.pdb * tools/pdbgen/pdb/paths.pdb * tools/pdbgen/pdb/pattern.pdb * tools/pdbgen/pdb/patterns.pdb * tools/pdbgen/pdb/procedural_db.pdb * tools/pdbgen/pdb/transform_tools.pdb: let pdbgen handle *only* variables for arguments and return values and declare all local variables inside the C code. Removed lots of alias => '<expression>' and no_declare => 1 stuff from return values, instead let pdbgen declare the variables and assign them manually in the C code. More cleanup. * tools/pdbgen/app.pl: removed support for proc->vars. * app/pdb/brush_cmds.c * app/pdb/brushes_cmds.c * app/pdb/context_cmds.c * app/pdb/drawable_cmds.c * app/pdb/drawable_transform_cmds.c * app/pdb/gradient_cmds.c * app/pdb/gradients_cmds.c * app/pdb/image_cmds.c * app/pdb/palette_cmds.c * app/pdb/palettes_cmds.c * app/pdb/paths_cmds.c * app/pdb/pattern_cmds.c * app/pdb/patterns_cmds.c * app/pdb/procedural_db_cmds.c * app/pdb/transform_tools_cmds.c * libgimp/gimpbrush_pdb.c * libgimp/gimpbrushes_pdb.c * libgimp/gimpgradient_pdb.c * libgimp/gimpgradients_pdb.c * libgimp/gimppalette_pdb.c * libgimp/gimppalettes_pdb.c * libgimp/gimppatterns_pdb.c: regenerated.
2006-03-15 20:49:25 +08:00
if (pattern)
{
width = gimp_temp_buf_get_width (pattern->mask);
height = gimp_temp_buf_get_height (pattern->mask);
bpp = babl_format_get_bytes_per_pixel (gimp_temp_buf_get_format (pattern->mask));
tools/pdbgen/pdb/brush.pdb tools/pdbgen/pdb/brushes.pdb 2006-03-15 Michael Natterer <mitch@gimp.org> * tools/pdbgen/pdb/brush.pdb * tools/pdbgen/pdb/brushes.pdb * tools/pdbgen/pdb/context.pdb * tools/pdbgen/pdb/drawable.pdb * tools/pdbgen/pdb/drawable_transform.pdb * tools/pdbgen/pdb/gradient.pdb * tools/pdbgen/pdb/gradients.pdb * tools/pdbgen/pdb/image.pdb * tools/pdbgen/pdb/palette.pdb * tools/pdbgen/pdb/palettes.pdb * tools/pdbgen/pdb/paths.pdb * tools/pdbgen/pdb/pattern.pdb * tools/pdbgen/pdb/patterns.pdb * tools/pdbgen/pdb/procedural_db.pdb * tools/pdbgen/pdb/transform_tools.pdb: let pdbgen handle *only* variables for arguments and return values and declare all local variables inside the C code. Removed lots of alias => '<expression>' and no_declare => 1 stuff from return values, instead let pdbgen declare the variables and assign them manually in the C code. More cleanup. * tools/pdbgen/app.pl: removed support for proc->vars. * app/pdb/brush_cmds.c * app/pdb/brushes_cmds.c * app/pdb/context_cmds.c * app/pdb/drawable_cmds.c * app/pdb/drawable_transform_cmds.c * app/pdb/gradient_cmds.c * app/pdb/gradients_cmds.c * app/pdb/image_cmds.c * app/pdb/palette_cmds.c * app/pdb/palettes_cmds.c * app/pdb/paths_cmds.c * app/pdb/pattern_cmds.c * app/pdb/patterns_cmds.c * app/pdb/procedural_db_cmds.c * app/pdb/transform_tools_cmds.c * libgimp/gimpbrush_pdb.c * libgimp/gimpbrushes_pdb.c * libgimp/gimpgradient_pdb.c * libgimp/gimpgradients_pdb.c * libgimp/gimppalette_pdb.c * libgimp/gimppalettes_pdb.c * libgimp/gimppatterns_pdb.c: regenerated.
2006-03-15 20:49:25 +08:00
}
else
success = FALSE;
2004-09-29 06:01:21 +08:00
}
CODE
);
}
sub pattern_get_pixels {
$blurb = <<'BLURB';
Retrieve information about the specified pattern (including pixels).
BLURB
$help = <<'HELP';
This procedure retrieves information about the specified. This
includes the pattern extents (width and height), its bpp and its pixel
data.
HELP
&mitch_pdb_misc('2004', '2.2');
@inargs = (
{ name => 'name', type => 'string', non_empty => 1,
desc => 'The pattern name.' }
);
@outargs = (
{ name => 'width', type => 'int32', void_ret => 1,
desc => "The pattern width" },
{ name => 'height', type => 'int32',
desc => "The pattern height" },
{ name => 'bpp', type => 'int32',
desc => "The pattern bpp" },
{ name => 'color_bytes', type => 'int8array',
desc => 'The pattern data.',
array => { desc => 'Number of pattern bytes' } }
);
%invoke = (
code => <<'CODE'
{
GimpPattern *pattern = gimp_pdb_get_pattern (gimp, name, error);
if (pattern)
{
width = gimp_temp_buf_get_width (pattern->mask);
height = gimp_temp_buf_get_height (pattern->mask);
bpp = babl_format_get_bytes_per_pixel (gimp_temp_buf_get_format (pattern->mask));
num_color_bytes = gimp_temp_buf_get_data_size (pattern->mask);
color_bytes = g_memdup (gimp_temp_buf_get_data (pattern->mask),
num_color_bytes);
}
else
success = FALSE;
}
CODE
);
}
2004-09-29 06:01:21 +08:00
@headers = qw(<string.h>
"core/gimpcontext.h"
"core/gimpdatafactory.h"
"core/gimppattern.h"
"core/gimptempbuf.h"
"gimppdb-utils.h");
2004-09-29 06:01:21 +08:00
@procs = qw(pattern_get_info
pattern_get_pixels);
2004-09-29 06:01:21 +08:00
%exports = (app => [@procs], lib => [@procs]);
$desc = 'Pattern';
$doc_title = 'gimppattern';
$doc_short_desc = 'Functions operating on a single pattern.';
$doc_long_desc = 'Functions operating on a single pattern.';
2004-09-29 06:01:21 +08:00
1;