[AOLSERVER] ImageMagick

2002-01-31 Thread Haluk Tunali
Hello, Is there an AOLServer module for ImageMagick? Actually, the only functionality I need is resizing the images on the fly. Any other method of easily implementing this task will be greatly appreciated. Thank you all. Haluk _ Do

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread Daniel P. Stasinski
Any other method of easily implementing this task will be greatly appreciated. This works for me. djpeg camera.jpg|pnmscale -xysize 100 75|cjpegthumbnail.jpg Daniel P. Stasinski Software Engineer Mayor Pharmaceutical Laboratories [EMAIL PROTECTED]

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread Patrick Spence
From: Daniel P. Stasinski [EMAIL PROTECTED] This works for me. djpeg camera.jpg|pnmscale -xysize 100 75|cjpegthumbnail.jpg This is how I do it (based on what daniel gave up there) There are also variations you can use with the pnmscale line to size it to a given width or height and not

[AOLSERVER] I have a problem with my account

2002-01-31 Thread prince nwobi
Hello, I have an account with aol.com, but I could not open the account. please I want you to help me out. my screen name is pnwobi the address is [EMAIL PROTECTED] I will be glad if you do. prince nwobi. __ Do You Yahoo!? Great stuff seeking new

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread Zoran Vasiljevic
On Thursday 31 January 2002 17:22, you wrote: OpenACS (http://openacs.org ) accesses ImageMagick using the exec command. What happens when AOLserver of 800M+ forks to do an exec _whatever_ ? Just curious Zoran

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread Peter M. Jansson
In most modern OS's, the vm implementation will use copy-on-write so that only modified pages are copied. Also there are optimizations so that if you exec in a child process shortly after forking, the process will use minimal memory. If you stress the facility, you may encounter problems, but

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread Patrick Kelly
Are you sure you wanna do that on the fly? It can be pretty expensive to be resizing images for every page request. From aolServer I call a Perl script that uses the Image::Magick Perl extension to resize images. The best feature of this is that I can make 4 resized versions while reading the

Re: [AOLSERVER] ImageMagick

2002-01-31 Thread carl garland
What happens when AOLserver of 800M+ forks to do an exec _whatever_ ? Just curious From what I recall, Jim said that they have taken steps to not exec from the main AOLserver process. These calls are passed off (not sure how) to other processes that take care of the execs. It also speeds