PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > php.general > Image Conversion...
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Image Conversion...

Réponse
 
LinkBack Outils de la discussion
Vieux 08/09/2007, 18h48   #1
Tony Di Croce
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Image Conversion...

I need to convert (resize, and store as blob's in a mysql db) images my
users can upload. I'm wondering what the best conversion tool is... I'm
considering ImageMagick... Is this the best?

Is their anything that is integrated with PHP itself?

td

  Réponse avec citation
Vieux 08/09/2007, 19h13   #2
Børge Holen
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion... OT!

On Saturday 08 September 2007 12:48, Tony Di Croce wrote:
> I need to convert (resize, and store as blob's in a mysql db)

oh oh oh... NO we can slap the horse again ;D

> images my
> users can upload. I'm wondering what the best conversion tool is... I'm
> considering ImageMagick... Is this the best?


consider using something you know for starters, then expand?
as for the question itself, yes is it the best?
anyone?

>
> Is their anything that is integrated with PHP itself?
>
> td

  Réponse avec citation
Vieux 08/09/2007, 19h22   #3
cajb
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion...

On 9/8/07, Tony Di Croce <dicroce@gmail.com> wrote:
> I need to convert (resize, and store as blob's in a mysql db) images


avoid that for no further problems.

> ImageMagick


you can use this tool for your needs.


--
Romanul s-a nascut poet. Trebuia sa se nasca neamt!
  Réponse avec citation
Vieux 08/09/2007, 19h54   #4
Børge Holen
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion... OT!

On Saturday 08 September 2007 13:59, Vidyut Luther wrote:
> Børge Holen wrote:
> > On Saturday 08 September 2007 12:48, Tony Di Croce wrote:
> >> I need to convert (resize, and store as blob's in a mysql db)

> >
> > oh oh oh... NO we can slap the horse again ;D
> >
> >> images my
> >> users can upload. I'm wondering what the best conversion tool is... I'm
> >> considering ImageMagick... Is this the best?

> >
> > consider using something you know for starters, then expand?
> > as for the question itself, yes is it the best?
> > anyone?

>
> Best is subjective, does it work the best? IMO yes, it's the best tool,
> but keep in mind, this makes your script less portable, not all hosts
> will allow you to run the 'convert' binary, nor will all installations
> have it readily available (Windows doesn't come with ImageMagick by
> default). It works the best for the applications I've written so far,
> but the PHP gd functions are just as powerful and probably more
> portable.. so without knowing all your requirements, it's hard to give a
> definitive answer .


as I run my own host... I solely asking for the quality.
pnmscale and cjpeg is the tools currently in use.

>
> >> Is their anything that is integrated with PHP itself?
> >>
> >> td

  Réponse avec citation
Vieux 08/09/2007, 19h59   #5
Vidyut Luther
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion... OT!

Børge Holen wrote:
> On Saturday 08 September 2007 12:48, Tony Di Croce wrote:
>
>> I need to convert (resize, and store as blob's in a mysql db)
>>

> oh oh oh... NO we can slap the horse again ;D
>
>
>> images my
>> users can upload. I'm wondering what the best conversion tool is... I'm
>> considering ImageMagick... Is this the best?
>>

>
> consider using something you know for starters, then expand?
> as for the question itself, yes is it the best?
> anyone?
>
>


Best is subjective, does it work the best? IMO yes, it's the best tool,
but keep in mind, this makes your script less portable, not all hosts
will allow you to run the 'convert' binary, nor will all installations
have it readily available (Windows doesn't come with ImageMagick by
default). It works the best for the applications I've written so far,
but the PHP gd functions are just as powerful and probably more
portable.. so without knowing all your requirements, it's hard to give a
definitive answer .




>> Is their anything that is integrated with PHP itself?
>>
>> td
>>

>
>

  Réponse avec citation
Vieux 08/09/2007, 20h16   #6
Vidyut Luther
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion... OT!

I've been using ImageMagick pretty much since 1997, I'm probably biased
or ignorant of other tools that are probably available to people these
days . But, ImageMagick still works wonderfully for me, so.. yes it's
the best .

Børge Holen wrote:
> On Saturday 08 September 2007 13:59, Vidyut Luther wrote:
>
>> Børge Holen wrote:
>>
>>> On Saturday 08 September 2007 12:48, Tony Di Croce wrote:
>>>
>>>> I need to convert (resize, and store as blob's in a mysql db)
>>>>
>>> oh oh oh... NO we can slap the horse again ;D
>>>
>>>
>>>> images my
>>>> users can upload. I'm wondering what the best conversion tool is... I'm
>>>> considering ImageMagick... Is this the best?
>>>>
>>> consider using something you know for starters, then expand?
>>> as for the question itself, yes is it the best?
>>> anyone?
>>>

>> Best is subjective, does it work the best? IMO yes, it's the best tool,
>> but keep in mind, this makes your script less portable, not all hosts
>> will allow you to run the 'convert' binary, nor will all installations
>> have it readily available (Windows doesn't come with ImageMagick by
>> default). It works the best for the applications I've written so far,
>> but the PHP gd functions are just as powerful and probably more
>> portable.. so without knowing all your requirements, it's hard to give a
>> definitive answer .
>>

>
> as I run my own host... I solely asking for the quality.
> pnmscale and cjpeg is the tools currently in use.
>
>
>>>> Is their anything that is integrated with PHP itself?
>>>>
>>>> td
>>>>

>
>

  Réponse avec citation
Vieux 09/09/2007, 00h30   #7
Kevin Waterson
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] Image Conversion...

This one time, at band camp, "Tony Di Croce" <dicroce@gmail.com> wrote:

> I need to convert (resize, and store as blob's in a mysql db) images my
> users can upload. I'm wondering what the best conversion tool is... I'm
> considering ImageMagick... Is this the best?
>
> Is their anything that is integrated with PHP itself?
>
> td
>


http://phpro.org/tutorials/Storing-I...-with-PHP.html


--
"Democracy is two wolves and a lamb voting on what to have for lunch.
Liberty is a well-armed lamb contesting the vote."
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 15h51.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,13673 seconds with 15 queries