Re: finding text in a gif image

2001-10-20 Thread Mel Matsuoka
At 10:45 PM 10/20/01 -0400, David Kirol wrote: >Hi All, >I need a way to extract the text portion from a .gif image of the >type attached. Any ideas? Ooo, you're gonna have a ton of fun trying to pull that off :) You're probably going to have to write your own OCR routines and tie them

finding text in a gif image

2001-10-20 Thread David Kirol
Hi All, I need a way to extract the text portion from a .gif image of the type attached. Any ideas? David begin 666 KBOX_latest_0.gif M1TE&.#=A; )L`O<``/___YF9F?_OVV"@H"]/3]/3TW1T=*FIJ3-55;G6 MUG*?_\37_SY7C&&'V;^_O^3DY&=G9Z*BHOH30/_DW/\```#_``#_ M__\`_XM')O^"1_^E3_^NN?]J

Re: executing an application within a perl script

2001-10-20 Thread Ray Barker
use system or exec system ('c:\"Program Files"\Accessories\wordpad.exe'); perldoc -f system perldoc -f exec note that system doesn't work as expected on windows apps. it returns immediately after the app starts OK. -Original Message- From: phumes1 <[EMAIL PROTECTED]> To: [EMAIL PROTECT

Re: Call Center Software

2001-10-20 Thread Elaine -HFB- Ashton
Joe Echavarria [[EMAIL PROTECTED]] quoth: *>Hi there, *> *> Does anyone of you know of a Call Center Software *>written perl. A complex one that can handle call *>statistic and all the things involve in a call center. I'm not sure what you mean by call center since that can mean a lot of differ

Need help with deleting from hash table

2001-10-20 Thread Dave Turner
First off, thanks to all who offered help with my trying to count the number of items passed in a CGI script. I finally figured out I had my logic wrong and it doesn't matter how many element's I'm passing, but... My problem now is that I can't get items deleted from a hash table. My code is a

Re: simple sockets

2001-10-20 Thread RaFaL Pocztarski
Florentin Ionescu wrote: > Can you please elaborate why"defined(<$new_sock>)" > does not assign data to $_ ? > My understanding was that although redundant > behavior in both cases should be identical. while() is a shortcut for while(defined($_=)) but defined() is not a shortcut for

Re: url encode

2001-10-20 Thread RaFaL Pocztarski
Pradeep Sethi wrote: > Is there a similar function in perl like PHP - urlencode / urldecode ? CGI->escape and CGI->unescape methods (they work also as functions). - RaFaL Pocztarski, [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

url encode

2001-10-20 Thread Pradeep Sethi
Is there a similar function in perl like PHP - urlencode / urldecode ? Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: simple sockets

2001-10-20 Thread Florentin Ionescu
Hi all, Can you please elaborate why"defined(<$new_sock>)" does not assign data to $_ ? My understanding was that although redundant behavior in both cases should be identical. Thank you, Florentin. - Original Message - From: "Michael Fowler" <[EMAIL PROTECTED]> To: "zentara" <[EMAIL P

Re: tainting problem

2001-10-20 Thread RaFaL Pocztarski
Christian Kasper wrote: > I call a perl program from a script with s bit set on user and group. > The perl interpreter told me, that my require <"xxx.pl";>statement is > insecure. I know, that the s-bit switch on the -T (tainting) option. > > How can i solve this problem ?? Try: require "xxx.