When using the new ImageExtractor <img/> tags placed as alternative content in
<object /> tags (normally used in video players using flash), images are not
detected.
It's quite a common practice to embed a video player like:
<object type="application/x-shockwave-flash">
<param name="movie" value='my.swf'/>
<param name="quality" value="high"/>
<param name="allowScriptAccess" value="always"/>
<param name="allowFullScreen" value="true"/>
<param name="wmode" value="opaque"/>
<img src='1328528982826.jpg' alt='yes an alt' title='and a title'/>
<p>some alternative content</p>
</object>
What is the expected output? What do you see instead?
These images should be detected as well.
To detect these images you only might need to comment out the line:
//TAG_ACTIONS.put("OBJECT", TA_IGNORABLE_ELEMENT);
from within ImageExtractor.java
Original issue reported on code.google.com by xavi.beu...@gmail.com on 6 Feb 2012 at 3:28
Original issue reported on code.google.com by
xavi.beu...@gmail.com
on 6 Feb 2012 at 3:28