summaryrefslogtreecommitdiff
path: root/www/api/texture.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/api/texture.html')
-rw-r--r--www/api/texture.html72
1 files changed, 38 insertions, 34 deletions
diff --git a/www/api/texture.html b/www/api/texture.html
index 1c4db41..da54775 100644
--- a/www/api/texture.html
+++ b/www/api/texture.html
@@ -1,12 +1,14 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<!DOCTYPE html>
+<html lang="en">
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.16: http://docutils.sourceforge.net/" />
-<title>texture</title>
-<link rel="stylesheet" href="../docutils-api.css" type="text/css" />
+ <meta charset="utf-8">
+ <meta content="en" name="language">
+ <title>texture</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link media="screen" href="../docutils-api.css" type="text/css" rel="stylesheet">
+
</head>
+
<body>
<div class="banner">
@@ -19,6 +21,7 @@
</form>
</div>
+
<div class="navmenu">
<ul>
<li><a href="../index.html">Home</a></li>
@@ -32,25 +35,23 @@
<li><a href="../reference.html">Reference</a></li>
</ul>
</div>
+
<div class="document" id="texture">
<h1 class="title">texture</h1>
-<h2 class="subtitle" id="image-texture-functions">Image texture functions</h2>
-
+<p class="subtitle" id="image-texture-functions">Image texture functions</p>
<div class="contents topic" id="contents">
<p class="topic-title">Contents</p>
<ul class="simple">
-<li><a class="reference internal" href="#constitutetextureimage" id="id3">ConstituteTextureImage</a></li>
-<li><a class="reference internal" href="#textureimage" id="id4">TextureImage</a></li>
+<li><p><a class="reference internal" href="#constitutetextureimage" id="id3">ConstituteTextureImage</a></p></li>
+<li><p><a class="reference internal" href="#textureimage" id="id4">TextureImage</a></p></li>
</ul>
</div>
<div class="section" id="constitutetextureimage">
<h1><a class="toc-backref" href="#id3">ConstituteTextureImage</a></h1>
<div class="section" id="synopsis">
<h2>Synopsis</h2>
-<pre class="literal-block">
-<a class="reference external" href="../api/types.html#image">Image</a> *ConstituteTextureImage( unsigned long columns, unsigned long rows,
- const <a class="reference external" href="../api/types.html#image">Image</a> *texture, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );
-</pre>
+<pre class="literal-block"><a class="reference external" href="../api/types.html#image">Image</a> *ConstituteTextureImage( unsigned long columns, unsigned long rows,
+ const <a class="reference external" href="../api/types.html#image">Image</a> *texture, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="description">
<h2>Description</h2>
@@ -58,19 +59,21 @@
tiling the texture image across and down the new image canvas. The
returned image properties are similar to the texture image properties.</p>
<p>The format of the TextureImage method is:</p>
-<pre class="literal-block">
-<a class="reference external" href="../api/types.html#image">Image</a> *ConstituteTextureImage( unsigned long columns, unsigned long rows,
- const <a class="reference external" href="../api/types.html#image">Image</a> *texture, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );
-</pre>
-<dl class="docutils">
+<pre class="literal-block"><a class="reference external" href="../api/types.html#image">Image</a> *ConstituteTextureImage( unsigned long columns, unsigned long rows,
+ const <a class="reference external" href="../api/types.html#image">Image</a> *texture, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
+<dl class="simple">
<dt>columns:</dt>
-<dd>The number of columns in the new image.</dd>
+<dd><p>The number of columns in the new image.</p>
+</dd>
<dt>rows:</dt>
-<dd>The number of rows in the new image.</dd>
+<dd><p>The number of rows in the new image.</p>
+</dd>
<dt>texture:</dt>
-<dd>The texture image to layer on the background.</dd>
+<dd><p>The texture image to layer on the background.</p>
+</dd>
<dt>exceptions:</dt>
-<dd>Any errors are reported here.</dd>
+<dd><p>Any errors are reported here.</p>
+</dd>
</dl>
</div>
</div>
@@ -78,9 +81,7 @@ returned image properties are similar to the texture image properties.</p>
<h1><a class="toc-backref" href="#id4">TextureImage</a></h1>
<div class="section" id="id1">
<h2>Synopsis</h2>
-<pre class="literal-block">
-MagickPassFail TextureImage( <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#image">Image</a> *texture );
-</pre>
+<pre class="literal-block">MagickPassFail TextureImage( <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#image">Image</a> *texture );</pre>
</div>
<div class="section" id="id2">
<h2>Description</h2>
@@ -89,23 +90,26 @@ canvas. If the image canvas includes a matte channel, then the tile is
alpha-composited &quot;under&quot; the image and the matte channel is removed.
MagickFail is returned if an error is encountered.</p>
<p>The format of the TextureImage method is:</p>
-<pre class="literal-block">
-MagickPassFail TextureImage( <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#image">Image</a> *texture );
-</pre>
+<pre class="literal-block">MagickPassFail TextureImage( <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#image">Image</a> *texture );</pre>
<p>A description of each parameter follows:</p>
-<dl class="docutils">
+<dl class="simple">
<dt>image:</dt>
-<dd>The image.</dd>
+<dd><p>The image.</p>
+</dd>
<dt>texture:</dt>
-<dd>This image is the texture to layer on the background.</dd>
+<dd><p>This image is the texture to layer on the background.</p>
+</dd>
</dl>
</div>
</div>
</div>
+
<hr class="docutils">
<div class="document">
- <p><a href="../Copyright.html">Copyright</a> © GraphicsMagick Group 2002 - 2022<!--SPONSOR_LOGO--></p>
+ <p><a href="../Copyright.html">Copyright</a> © GraphicsMagick Group 2002 - 2023<!--SPONSOR_LOGO--></p>
+</div>
+
</div>
</body>
</html>