Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

big graphics

Status
Not open for further replies.

zoomby

Programmer
Aug 5, 2002
60
DE
hello!

Does someone know how to speed up the handling of big images (around 2 MB), or is php just slow in this case.

Another question: Does someone know a server/tool (BSD) which can manipulate images faster than php?
I'm thinking of a big map which should be partly loaded. The user could then navigate in this map, (no applet)
like in a online street map.

Thanks for all help...
Bye
Zoomby
 
look, 2MB communication, in a slow connection like 56 kbps, means you have to wait 256 seconds (4 minutes) in a optimal scenario.

You can't improve that communication until you have a good connection speed to the net.
Anikin
Hugo Alexandre Dias
Web-Programmer
anikin_jedi@hotmail.com
 
Hi,

I'm not talking about diplaying images. I mean the time the server needs to manipulate an image using the PHP image functions...

Bye
Zoomby
 
You could always try ImageMagick, but I'm not all that sure it would help. Manipulation of large graphics is very processor and memory intensive.

Is there any way you could pre-generate and display on demand? ______________________________________________________________________
Never forget that we are
made of the stuff of stars
 
Hi,

Thanks for the help. Here is what I want to do in detail:
I have a big, 2mb map of a landscape with cities and bus stations. I want to offer the user a comfortable way to navigate in the map (zoom, scroll etc via links).
The same system, like I want it, can be seen here:
Any tips?

Bye, Zoomby
 
cut the map into loads of small bits, number them all very carefully and reconstruct the reuired bits as required.

mySQL and PHP should do this in a fraction of the manipulation time of something like the GD library. ______________________________________________________________________
There's no present like the time, they say. - Henry's Cat.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top