2010-03-28 22:10:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-07-11 07:40:16 +00:00
|
|
|
<!-- $Revision$ -->
|
2012-01-12 05:08:38 +00:00
|
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="imagickpixeliterator.construct">
|
2007-06-05 02:41:01 +00:00
|
|
|
<refnamediv>
|
|
|
|
<refname>ImagickPixelIterator::__construct</refname>
|
|
|
|
<refpurpose>The ImagickPixelIterator constructor</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 role="description">
|
|
|
|
&reftitle.description;
|
2008-01-01 14:55:27 +00:00
|
|
|
<methodsynopsis>
|
2012-01-08 05:48:33 +00:00
|
|
|
<methodname>ImagickPixelIterator::__construct</methodname>
|
2008-01-01 14:55:27 +00:00
|
|
|
<methodparam><type>Imagick</type><parameter>wand</parameter></methodparam>
|
|
|
|
</methodsynopsis>
|
2007-06-05 02:41:01 +00:00
|
|
|
&warn.undocumented.func;
|
|
|
|
<para>
|
|
|
|
The ImagickPixelIterator constructor
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 role="returnvalues">
|
|
|
|
&reftitle.returnvalues;
|
|
|
|
<para>
|
2007-06-14 06:13:42 +00:00
|
|
|
&imagick.return.success;
|
2007-06-05 02:41:01 +00:00
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2015-04-01 15:11:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
<refsect1 role="examples">
|
|
|
|
&reftitle.examples;
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title> <function>ImagickPixelIterator::construct</function></title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
function construct($imagePath) {
|
|
|
|
$imagick = new \Imagick(realpath($imagePath));
|
|
|
|
$imageIterator = new \ImagickPixelIterator($imagick);
|
|
|
|
|
|
|
|
/* Loop through pixel rows */
|
|
|
|
foreach ($imageIterator as $pixels) {
|
|
|
|
/* Loop through the pixels in the row (columns) */
|
|
|
|
foreach ($pixels as $column => $pixel) {
|
|
|
|
/** @var $pixel \ImagickPixel */
|
|
|
|
if ($column % 2) {
|
|
|
|
/* Paint every second pixel black*/
|
|
|
|
$pixel->setColor("rgba(0, 0, 0, 0)");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Sync the iterator, this is important to do on each iteration */
|
|
|
|
$imageIterator->syncIterator();
|
|
|
|
}
|
|
|
|
|
|
|
|
header("Content-Type: image/jpg");
|
|
|
|
echo $imagick;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
2007-06-05 02:41:01 +00:00
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
2009-09-25 07:04:39 +00:00
|
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
2007-06-05 02:41:01 +00:00
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|