From 3c57dd931145d43f2b0aef96c4d178135956bf91 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 05:13:10 +0200 Subject: Adding upstream version 2.10.36. Signed-off-by: Daniel Baumann --- devel-docs/libgimp/html/libgimp-gimppattern.html | 182 +++++++++++++++++++++++ 1 file changed, 182 insertions(+) create mode 100644 devel-docs/libgimp/html/libgimp-gimppattern.html (limited to 'devel-docs/libgimp/html/libgimp-gimppattern.html') diff --git a/devel-docs/libgimp/html/libgimp-gimppattern.html b/devel-docs/libgimp/html/libgimp-gimppattern.html new file mode 100644 index 0000000..437ca36 --- /dev/null +++ b/devel-docs/libgimp/html/libgimp-gimppattern.html @@ -0,0 +1,182 @@ + + + + +gimppattern: GIMP Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

gimppattern

+

gimppattern — Functions operating on a single pattern.

+
+
+

Functions

+
++++ + + + + + + + + + + +
+gboolean + +gimp_pattern_get_info () +
+gboolean + +gimp_pattern_get_pixels () +
+
+
+

Description

+

Functions operating on a single pattern.

+
+
+

Functions

+
+

gimp_pattern_get_info ()

+
gboolean
+gimp_pattern_get_info (const gchar *name,
+                       gint *width,
+                       gint *height,
+                       gint *bpp);
+

Retrieve information about the specified pattern.

+

This procedure retrieves information about the specified pattern. +This includes the pattern extents (width and height).

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + +

name

The pattern name.

 

width

The pattern width.

 

height

The pattern height.

 

bpp

The pattern bpp.

 
+
+
+

Returns

+

TRUE on success.

+
+

Since: 2.2

+
+
+
+

gimp_pattern_get_pixels ()

+
gboolean
+gimp_pattern_get_pixels (const gchar *name,
+                         gint *width,
+                         gint *height,
+                         gint *bpp,
+                         gint *num_color_bytes,
+                         guint8 **color_bytes);
+

Retrieve information about the specified pattern (including pixels).

+

This procedure retrieves information about the specified. This +includes the pattern extents (width and height), its bpp and its +pixel data.

+
+

Parameters

+
+++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

name

The pattern name.

 

width

The pattern width.

 

height

The pattern height.

 

bpp

The pattern bpp.

 

num_color_bytes

Number of pattern bytes.

 

color_bytes

The pattern data.

 
+
+
+

Returns

+

TRUE on success.

+
+

Since: 2.2

+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3