Hi,
is there a possibility to include images into a docbook manual compiled by phpDocumentor?
I tried both:
<mediaobject>
<imageobject>
<imagedata fileref="payment_flowchart.png" format="png"/>
</imageobject>
</mediaobject>
and:
<figure><title>foo</title>
<graphic fileref="payment_flowchart.png"/>
</figure>
Then again the image paths I tried might not have been what phpDocumentor expected, but I don't know where to put them anyway really.
Maybe someone has tried it before and had more success?
UPDATE
Current non-working approach:
<refentry id="{@id}">
<refnamediv>
<refname>Company_Payment</refname>
</refnamediv>
<refsynopsisdiv>
<author>
Company
<authorblurb>
{@link mailto:[email protected] André Hoffmann}
</authorblurb>
</author>
</refsynopsisdiv>
{@toc}
<refsect1 id="{@id about}">
<title>About</title>
<para>
text
<imagedata fileref="/Users/andre/Zend/workspaces/DefaultWorkspace7/payment/doc/tutorials/company/payment_flowchart.png" format="PNG"/>
</para>
<imagedata fileref="/Users/andre/Zend/workspaces/DefaultWorkspace7/payment/doc/tutorials/company/payment_flowchart.png" format="PNG"/>
<mediaobject>
<imageobject>
<imagedata fileref="/Users/andre/Zend/workspaces/DefaultWorkspace7/payment/doc/tutorials/company/payment_flowchart.png" format="PNG"/>
</imageobject>
</mediaobject>
<figure><title>foo</title>
<graphic srccredit="Norman Walsh, 1998" fileref="/Users/andre/Zend/workspaces/DefaultWorkspace7/payment/doc/tutorials/company/payment_flowchart.png"/>
</figure>
</refsect1>
...