Best PHP Image Crop Class

前端 未结 9 1081
盖世英雄少女心
盖世英雄少女心 2021-01-30 14:30

I\'m designing a website and I need to:

  • Upload the image
  • Validate that it\'s an image (and not, oh I don\'t know.... a virus :) )
  • Resize the Imag
相关标签:
9条回答
  • 2021-01-30 15:30

    I recommend SimpleImage, it is very simple, has only one file and is updated.

    Example of use:

    $img = new SimpleImage('image.jpg');
    
    // Resize the image to 320x200
    $img->resize(320, 200);
    
    $img->save('new-image.jpg');
    
    0 讨论(0)
  • 2021-01-30 15:31

    Check out JCROP Plugin

    This will be uselful for all

    JCROP Image cropping----deepliquid.com/content/Jcrop.html

    enter image description here

    0 讨论(0)
  • 2021-01-30 15:32

    The class upload from Colin Verot http://www.verot.net/php_class_upload.htm is my favourite. I use in in all my projects. Like the way you 'talk' to the class and only use what your need, but gives plenty of configuration/methods to tweak it to your exact needs. Great class!

    0 讨论(0)
提交回复
热议问题