vote up 1 vote down star
1

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:my@mail.com 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>
...
flag

71% accept rate
less than 24h to go..seems like no one ever wanted to have images in their phpdoc/docbook documentation :-( – André Hoffmann Sep 15 at 0:18

1 Answer

vote up 0 vote down

I think they fixed this in 1.3.0 using the <graphic/> tag. What version are you running?

link|flag
I'm using version 1.4.1. The one that comes with Zend Studio for Eclipse 7.0 – André Hoffmann Sep 9 at 20:13
After looking at documentation for both it looks like you doing things correctly. I did notice that the format="png" had the png in uppercase like this: format="PNG" don't know if this make a difference. docbook.org/tdg5/en/… – Phill Pafford Sep 10 at 12:56
I tried writing it in uppercase, but it doesn't show up either. Btw.: I also tried specifing an absolute path. – André Hoffmann Sep 10 at 15:17
Could you try the imagedata tag without the wrapper tags? Wondering if there is some sort of conflict that way? – Phill Pafford Sep 10 at 15:20
Unfortunately that doesn't work either. I copied more or less the full source I'm using, so that you can see the context. – André Hoffmann Sep 10 at 15:39
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.