in reply to Re^3: Image processing in perl
in thread Image processing in perl

hi Dave, I tried this one but still same problem. it is showing the o/p only for one occurance. please give me the suitable solution to this problem.

Replies are listed 'Best First'.
Re^5: Image processing in perl
by davido (Cardinal) on Feb 03, 2011 at 20:05 UTC

    Well, three suggestions I have: (1) Look at the code of the module itself and determine how it reads the parameters so that you can massage your request to fit within what its method is expecting. (2) Look at the code of the module itself for an example of how to roll your own solution that works as you would prefer it to. (3) If the module's code is broken, get in touch with the module's author and help out by submitting a patch to him.

    Option one or two are probably the easiest. The module's deficient POD does suggest that it's possible to get a list of all matches, so it's probably just a matter of looking at how the module expects you to properly request a list of all matches versus first match only. For that you'll have to take a look at the module's code, as the POD is not thorough enough to explain what is required.


    Dave