PHP Thumbnail Class

后端 未结 3 1377
难免孤独
难免孤独 2021-02-10 07:40

I am looking for a solid PHP thumbnail generating class. Does anyone know any good ones that are open-source?

I could write one, but I really don\'t want to. The one thi

3条回答
  •  庸人自扰
    2021-02-10 08:32

    Use phpThumb(). Its a script that internally uses GD library and/or ImageMagick (whichever is available and whichever it thinks is best for the job) to perform basic image manipulation tasks, including thumbnail generation and square thumbnail generation.

    You can use it like this:

    
    
    
    
    

    It has built in caching engine so second time a browser requests the above image it is served from its own cache instead of re-generating the thumbnail every time. Though, you may want to spend an hour or so configuring it.

提交回复
热议问题