<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=Image_Text</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/16749" />
      <rdf:li rdf:resource="http://pear.php.net/bug/2450" />
      <rdf:li rdf:resource="http://pear.php.net/bug/2449" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/16749">
      <title>Image_Text: Feature/Change Request 16749 [Open] Image to background</title>
      <link>http://pear.php.net/bugs/16749</link>
      <content:encoded><![CDATA[<pre>Image_Text Feature/Change Request
Reported by dolphinet
2009-10-29T13:43:43+00:00
PHP: 5.2.5 OS: Linux Package Version: 0.6.0beta

Description:
------------
I'd like to add an existing image to the background.
Example:
$options = array('background_image' =&gt; 'test_image.jpg');

If the image is exists on the system this will be the background not the background-color.

Thanks
ZoTyA</pre>]]></content:encoded>
      <description><![CDATA[<pre>Image_Text Feature/Change Request
Reported by dolphinet
2009-10-29T13:43:43+00:00
PHP: 5.2.5 OS: Linux Package Version: 0.6.0beta

Description:
------------
I'd like to add an existing image to the background.
Example:
$options = array('background_image' =&gt; 'test_image.jpg');

If the image is exists on the system this will be the background not the background-color.

Thanks
ZoTyA</pre>]]></description>
      <dc:date>2009-10-29T15:20:58+00:00</dc:date>
      <dc:creator>zkoteles &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>Image_Text Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/2450">
      <title>Image_Text: Feature/Change Request 2450 [Open] Drop Shadows</title>
      <link>http://pear.php.net/bugs/2450</link>
      <content:encoded><![CDATA[<pre>Image_Text Feature/Change Request
Reported by se@...
2004-10-04T15:54:16+00:00
PHP: 4.3.8 OS:  Package Version: 

Description:
------------
It would be nice to have an easy way to have drop shadows.

Reproduce code:
---------------
# this is what I did to emulate drop shadows, it is probably not ideal
$c = 'A Headline!';
$w = 510;
$h = 80;

$options1 = array(
        'canvas'        =&gt; array('width'=&gt; $w,'height'=&gt; $h + 1),
        'width'         =&gt; $w,
        'height'        =&gt; $h - 10,
        'line_spacing'  =&gt; .4,
        'color'         =&gt; '#333333',
        'max_lines'     =&gt; 3,
        'min_font_size' =&gt; 2,
        'max_font_size' =&gt; 50,
        'font_size'     =&gt; 36,
        'font_path'     =&gt; LIBDIR . '/fonts/',
        'font_file'     =&gt; 'trebuc.ttf',
        'valign'        =&gt; IMAGE_TEXT_ALIGN_BOTTOM
        );
$options2 = $options1;
$options2['color'] ='#000000';

$text1 = new Image_Text($c, $options1);
$text2 = new Image_Text($c, $options2);

$text1-&gt;init();
$text2-&gt;init();

$img1 =&amp; $text1-&gt;getImg();
$img2 =&amp; $text2-&gt;getImg();
    
$white = imagecolorallocate($img1, 255, 255, 255); 

imagefilledrectangle($img1, 0, 0, $w, $h, $white);
imagefilledrectangle($img2, 0, 0, $w, $h, $white);

$text1-&gt;autoMeasurize(14, 26);
$text2-&gt;autoMeasurize(14, 26);

$text2-&gt;render();
imagecopymerge($img1, $img2, 1, 1, 0, 0, $w, $h, 30);
$text1-&gt;render();
$text1-&gt;display();</pre>]]></content:encoded>
      <description><![CDATA[<pre>Image_Text Feature/Change Request
Reported by se@...
2004-10-04T15:54:16+00:00
PHP: 4.3.8 OS:  Package Version: 

Description:
------------
It would be nice to have an easy way to have drop shadows.

Reproduce code:
---------------
# this is what I did to emulate drop shadows, it is probably not ideal
$c = 'A Headline!';
$w = 510;
$h = 80;

$options1 = array(
        'canvas'        =&gt; array('width'=&gt; $w,'height'=&gt; $h + 1),
        'width'         =&gt; $w,
        'height'        =&gt; $h - 10,
        'line_spacing'  =&gt; .4,
        'color'         =&gt; '#333333',
        'max_lines'     =&gt; 3,
        'min_font_size' =&gt; 2,
        'max_font_size' =&gt; 50,
        'font_size'     =&gt; 36,
        'font_path'     =&gt; LIBDIR . '/fonts/',
        'font_file'     =&gt; 'trebuc.ttf',
        'valign'        =&gt; IMAGE_TEXT_ALIGN_BOTTOM
        );
$options2 = $options1;
$options2['color'] ='#000000';

$text1 = new Image_Text($c, $options1);
$text2 = new Image_Text($c, $options2);

$text1-&gt;init();
$text2-&gt;init();

$img1 =&amp; $text1-&gt;getImg();
$img2 =&amp; $text2-&gt;getImg();
    
$white = imagecolorallocate($img1, 255, 255, 255); 

imagefilledrectangle($img1, 0, 0, $w, $h, $white);
imagefilledrectangle($img2, 0, 0, $w, $h, $white);

$text1-&gt;autoMeasurize(14, 26);
$text2-&gt;autoMeasurize(14, 26);

$text2-&gt;render();
imagecopymerge($img1, $img2, 1, 1, 0, 0, $w, $h, 30);
$text1-&gt;render();
$text1-&gt;display();</pre>]]></description>
      <dc:date>2004-10-04T15:54:16+00:00</dc:date>
      <dc:creator>se &amp;#x61;&amp;#116; hexatex &amp;#x64;&amp;#111;&amp;#x74; de</dc:creator>
      <dc:subject>Image_Text Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/2449">
      <title>Image_Text: Feature/Change Request 2449 [Open] Change color of text by word</title>
      <link>http://pear.php.net/bugs/2449</link>
      <content:encoded><![CDATA[<pre>Image_Text Feature/Change Request
Reported by se@...
2004-10-04T15:50:05+00:00
PHP: 4.3.8 OS:  Package Version: 

Description:
------------
It would be nice to be able to change the color of text by Word, so that we could have a line with text with different words having different colors. It would be even nicer to be able to do that on a character basis.

Reproduce code:
---------------
# that is one way it could look

$image_text-&gt;setColor('#ffff00');
$image_text-&gt;addText('Eins ');
$image_text-&gt;setColor('#ff0000');
$image_text-&gt;addText('Zwei ');
$image_text-&gt;setColor('#00ff00');
$image_text-&gt;addText('Drei');
$image_text-&gt;render();


Expected result:
----------------
The word &quot;Eins &quot;, &quot;Zwei &quot; and &quot;Drei &quot; would be different colors, but on one line.

Thanks
Sascha Ebach</pre>]]></content:encoded>
      <description><![CDATA[<pre>Image_Text Feature/Change Request
Reported by se@...
2004-10-04T15:50:05+00:00
PHP: 4.3.8 OS:  Package Version: 

Description:
------------
It would be nice to be able to change the color of text by Word, so that we could have a line with text with different words having different colors. It would be even nicer to be able to do that on a character basis.

Reproduce code:
---------------
# that is one way it could look

$image_text-&gt;setColor('#ffff00');
$image_text-&gt;addText('Eins ');
$image_text-&gt;setColor('#ff0000');
$image_text-&gt;addText('Zwei ');
$image_text-&gt;setColor('#00ff00');
$image_text-&gt;addText('Drei');
$image_text-&gt;render();


Expected result:
----------------
The word &quot;Eins &quot;, &quot;Zwei &quot; and &quot;Drei &quot; would be different colors, but on one line.

Thanks
Sascha Ebach</pre>]]></description>
      <dc:date>2004-10-04T15:50:05+00:00</dc:date>
      <dc:creator>se &amp;#x61;&amp;#116; hexatex &amp;#x64;&amp;#111;&amp;#x74; de</dc:creator>
      <dc:subject>Image_Text Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
