472,330 Members | 1,217 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,330 software developers and data experts.

GD netpbm imagemagick what is better?

for to resize and copy original photos into a new directory and to use
for a thumbnail gallery on the web;

what is better: GD, Netpbm or imagemagick and why?

very thank
Jul 17 '05 #1
5 3535
*** nawfer escribió/wrote (Mon, 11 Oct 2004 19:18:19 GMT):
for to resize and copy original photos into a new directory and to use
for a thumbnail gallery on the web;

what is better: GD, Netpbm or imagemagick and why?


I particularly like ImageMagick because:

* My PHP version is too old for GD
* It's easy to use: I get thumbs with one line of code

I also suppose that being compiled software rather than interpreted it
should be faster but it's just a guess.

I've never used Netpbm.

--
-+ Álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ Las dudas informáticas recibidas por correo irán directas a la papelera
-+ I'm not a free help desk, please don't e-mail me your questions
--
Jul 17 '05 #2
Alvaro G. Vicario wrote:
for to resize and copy original photos into a new directory and to use
for a thumbnail gallery on the web;

what is better: GD, Netpbm or imagemagick and why?


I particularly like ImageMagick because:

* My PHP version is too old for GD
* It's easy to use: I get thumbs with one line of code

I also suppose that being compiled software rather than interpreted it
should be faster but it's just a guess.


I use a combination of the two for the images I generate on the fly on one
of the sites I manage, as they are made large and then reduced.

I use the GD library to open the source background image and write the text
onto it, and then ImageMagick to scale it down to the correct size (yes,
this may sound inefficient ie "why don't you just make it small to start
with", but there are good reasons for doing it this way).

Initially I had GD resizing the image but then ran a bunch of tests and
ImageMagick is considerably faster at resizing than GD, at least for the
images I was using anyway.

--
Chris Hope - The Electric Toolbox - http://www.electrictoolbox.com/
Jul 17 '05 #3
> * My PHP version is too old for GD
* It's easy to use: I get thumbs with one line of code


Your code, have you take online?
Is there a good link with examples?
Jul 17 '05 #4
> I use a combination of the two for the images I generate on the fly on one
of the sites I manage, as they are made large and then reduced.
1- You use solution 'on the fly' only if you have one or few images?
But that's advantage to use gd with imagemagick, respect to use only
the second?
I use the GD library to open the source background image and write the text
onto it, and then ImageMagick to scale it down to the correct size (yes,
this may sound inefficient ie "why don't you just make it small to start
with", but there are good reasons for doing it this way).

Initially I had GD resizing the image but then ran a bunch of tests and
ImageMagick is considerably faster at resizing than GD, at least for the
images I was using anyway.


2- This is another solution for to use both.
Which are the advantages?

3- For only resize images into a new directory to use after for web
gallery, you use only imagemagick?

For all 3 solutions, where have you look codes?
Jul 17 '05 #5
*** nawfer escribió/wrote (Tue, 12 Oct 2004 09:17:52 GMT):
* It's easy to use: I get thumbs with one line of code


Your code, have you take online?
Is there a good link with examples?


Check the "Examples of ImageMagick Usage" link in the official site
http://www.imagemagick.org/

--
-+ Álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ Las dudas informáticas recibidas por correo irán directas a la papelera
-+ I'm not a free help desk, please don't e-mail me your questions
--
Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Randell D. | last post by:
Folks, I've not used ImageMagick before - I've worked with the gd functions that are pre-compiled in PHP and found some of the limits problematic...
3
by: Joe | last post by:
Hey I have tried to install ImageMagick on my server, but my apache stalls when i try to start it with the following line added to my php.ini...
1
by: shanergb | last post by:
Hi all. I'm creating a web-based application that uses PHP, MySQL & Apache on a Windows platform. What I need to do is create images on the fly...
3
by: Chuck Anderson | last post by:
I am trying to use ImageMagick from a Php script running under Windows XP. I have installed the latest version of ImageMagick - 6.2.1-7 and even...
5
by: Jim Red | last post by:
Hello Can someone give me an example how to use the Imagemagick - Identity command? Cheers Jim
0
by: ngocviet | last post by:
I use ImageMagick to add text to my animation gif, It's OK but my file is 4-5 times bigger than before(47.5K --195K :( ) The animation have 15...
6
by: eholz1 | last post by:
Hello Users, I am not sure if this is the place to post an imagemagick question - please advise. I have imagemagick 6.3 installed, runs from...
2
by: azrael | last post by:
Hy did anyone manage to work with imahemagick through python. I've been googling like a crazy for some instalation instructions, but i cant find...
0
by: empiresolutions | last post by:
I am working with a TIF to JPG conversion that will result in the JPG being printed from a web page. My issue is the final JPG image prints VERY...
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.