Re: [PHP] How can I call GD's imagepng() directly from my class?

2010-12-06 Thread Nathan Nobbe
On Mon, Dec 6, 2010 at 5:26 PM, Daevid Vincent wrote: > > I got a little 'hack' further, but not loving it. Maybe I'll move the image > to a $_SESSION variable and then have the "gdtest.php" pull it and echo it > that way > well i think you may be in the right direction, however, id be inter

RE: [PHP] How can I call GD's imagepng() directly from my class?

2010-12-06 Thread Daevid Vincent
> -Original Message- > From: Daevid Vincent [mailto:dae...@daevid.com] > Sent: Monday, December 06, 2010 4:02 PM > To: php-general@lists.php.net > Subject: [PHP] How can I call GD's imagepng() directly from my class? > > I have a class that does some massive computations to compute a L

Re: [PHP] How can I call GD's imagepng() directly from my class?

2010-12-06 Thread Nathan Nobbe
On Mon, Dec 6, 2010 at 5:01 PM, Daevid Vincent wrote: > I have a class that does some massive computations to compute a LOPA > (layout of passenger aircraft). > > I currently render it in an HTML table with little seats. I want to now > make this using GD so I can show entire fleets of aircraft o

[PHP] How can I call GD's imagepng() directly from my class?

2010-12-06 Thread Daevid Vincent
I have a class that does some massive computations to compute a LOPA (layout of passenger aircraft). I currently render it in an HTML table with little seats. I want to now make this using GD so I can show entire fleets of aircraft on one page. Inside my LOPA.class.php I have this method:

Re: [PHP] Barcode Reader

2010-12-06 Thread Richard Quadling
On 6 December 2010 17:07, Floyd Resler wrote: > They're 2d barcodes.  I did a Google search and really couldn't find > anything.  After talking with my boss, though, we decided that this project > would probably take too much time and be frustrating for the users.  We're > trying to decode barc

[PHP] RE: [PHP-DB] Re: [PHP] Closing Browser

2010-12-06 Thread Oddity Software LLC
If you are trying to do some automation type stuff you might want to look at something like Robo Task - http://www.robotask.com/ You can schedule a browser open to specified URL's (php script) and have it close the window handle after the page is loaded. Regards, Will T Chief Technical Officer

Re: [PHP] Closing Browser

2010-12-06 Thread tedd
At 12:45 AM -0500 12/3/10, Ethan Rosenberg wrote: Dear List - How do I close the browser window, with a script [shell or Perl], after I exit PHP? Thanks. Ethan Ethan: PHP runs before the browser reads the result. As such, if PHP closed the window when it exited, then there would not be

[PHP] Re: Webservice Wsdl - to do or not to do?

2010-12-06 Thread Augusto Flavio
I found the problem. I checked the binding WSDL tag and I found that the soap body of the method was omitted. http://smartchat/SendInvitationToVisitor"; /> I just back with it: http://smartchat/SendInvitationToVisitor"; />

Re: [PHP] Barcode Reader

2010-12-06 Thread Daniel P. Brown
On Mon, Dec 6, 2010 at 14:18, fakessh @ wrote: > > http://search.cpan.org/dist/GD-Barcode/ Your point? The OP never asked about a barcode generator. -- Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List

[PHP] Webservice Wsdl - to do or not to do?

2010-12-06 Thread Augusto Flavio
Hi, I'm wrting a WSDL webservice in php and I have a doubt about one thing. I created a method(or operation) that sends an invitation to the user. The request uses the session ID to identify the user that I want to send the invitation. Here is a example of the WSDL request from the eclipse.

Re: [PHP] Barcode Reader

2010-12-06 Thread fakessh @
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 06.12.2010 19:06, Daniel P. Brown a écrit : > On Mon, Dec 6, 2010 at 12:07, Floyd Resler wrote: >> They're 2d barcodes. I did a Google search and really couldn't find >> anything. After talking with my boss, though, we decided that this project

Re: Re[2]: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Steve Staples
On Mon, 2010-12-06 at 20:31 +0200, Andre Polykanine wrote: > Hello Steve, > > Btw, the built-in mail() function is to slow to send such amount > of mail. Consider using SMTP (if you don't). > -- > With best regards from Ukraine, > Andre > Skype: Francophile > Twitter: http://twitter.com/m_ele

Re[2]: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Andre Polykanine
Hello Steve, Btw, the built-in mail() function is to slow to send such amount of mail. Consider using SMTP (if you don't). -- With best regards from Ukraine, Andre Skype: Francophile Twitter: http://twitter.com/m_elensule Facebook: http://facebook.com/menelion - Original message - Fr

Re: [PHP] Barcode Reader

2010-12-06 Thread Daniel P. Brown
On Mon, Dec 6, 2010 at 12:07, Floyd Resler wrote: > They're 2d barcodes.  I did a Google search and really couldn't find > anything.  After talking with my boss, though, we decided that this project > would probably take too much time and be frustrating for the users.  We're > trying to decode

Re: [PHP] Barcode Reader

2010-12-06 Thread Floyd Resler
They're 2d barcodes. I did a Google search and really couldn't find anything. After talking with my boss, though, we decided that this project would probably take too much time and be frustrating for the users. We're trying to decode barcodes from pictures taken with cell phones. In testing

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Steve Staples
On Mon, 2010-12-06 at 16:19 +, Richard Quadling wrote: > On 6 December 2010 15:46, Ferdi wrote: > > On 6 December 2010 20:47, Steve Staples wrote: > > > >> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > >> > Greetings List members, > >> > > >> > I have a script that takes quite a while to

Re: [PHP] Barcode Reader

2010-12-06 Thread Jason Pruim
What kind of barcode? Most of the barcodes I work with only store text that doesn't mean much unless you have the decode algorithm... In other words you need to know where the info is coming from to be able to determine what is stored in the barcode. Jason Pruim On Dec 6, 2010, at 11:21 AM

[PHP] Barcode Reader

2010-12-06 Thread Floyd Resler
Does anyone know of a class that can extract information from a barcode image? Thanks! Floyd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Richard Quadling
On 6 December 2010 15:46, Ferdi wrote: > On 6 December 2010 20:47, Steve Staples wrote: > >> On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: >> > Greetings List members, >> > >> > I have a script that takes quite a while to run, one or two hours, I wish >> to >> > redirect the normal php output t

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Ferdi
On 6 December 2010 20:47, Steve Staples wrote: > On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > > Greetings List members, > > > > I have a script that takes quite a while to run, one or two hours, I wish > to > > redirect the normal php output to a file on the webserver itself. I don't > > min

Re: [PHP] desire your recommendation for our specific HTML -> PDF project

2010-12-06 Thread Paul M Foster
On Mon, Dec 06, 2010 at 09:23:02AM -0500, Steve Staples wrote: [snip] > > Personally, I use FPDF [1] to generate PDF's on the fly. It has a lot > of "addons" that people have created, and some of those, are barcodes. > use it to generate shipping/packing labels for a client, and it creates > ab

Re: [PHP] Redirect output to a file on the web server

2010-12-06 Thread Steve Staples
On Mon, 2010-12-06 at 20:29 +0530, Ferdi wrote: > Greetings List members, > > I have a script that takes quite a while to run, one or two hours, I wish to > redirect the normal php output to a file on the webserver itself. I don't > mind if in the process, the browser displays a blank page. The re

[PHP] Redirect output to a file on the web server

2010-12-06 Thread Ferdi
Greetings List members, I have a script that takes quite a while to run, one or two hours, I wish to redirect the normal php output to a file on the webserver itself. I don't mind if in the process, the browser displays a blank page. The reason I want to do this is that if the script crashes or th

Re: [PHP] desire your recommendation for our specific HTML -> PDF project

2010-12-06 Thread Steve Staples
On Fri, 2010-12-03 at 18:11 -0500, Govinda wrote: > Hi all > > I have a question which I see from googling has been discussed at > length.. but I want to know what you would recommend based on our > particular needs. I want to be on the right track before I find out a- > week-of-work later t