4

I have a basic script to upload and manage photos, but there are many things that it lacks.

For some reason photo files like .tif do not get uploaded and there is no automatic re-sizing of different images (vertical or horizontal).

Could someone please suggest some solutions for this?

Bart
  • 19,692
  • 7
  • 68
  • 77
Genadinik
  • 18,153
  • 63
  • 185
  • 284
  • possible duplicate of [Need a open source Php image gallery script.](http://stackoverflow.com/questions/3749258/need-a-open-source-php-image-gallery-script) and a [couple more](http://stackoverflow.com/search?q=gallery+php) – Gordon Oct 17 '10 at 15:59

3 Answers3

4

Try to use Primage library, it's based on GD2 extension.

barbushin
  • 5,165
  • 5
  • 37
  • 43
  • I use the Veno File Manager for me work fine https://codecanyon.net/item/veno-file-manager-host-and-share-files/6114247 – Doberon Nov 08 '20 at 06:14
3

http://gallery.menalto.com/

http://www.tftgallery.org/

etc,etc,etc

PeterMmm
  • 24,152
  • 13
  • 73
  • 111
  • Thanks Peter, I am browsing through the documentation for menalito.com and they mention that they require image processing libraries like ImageMagick or NetPBM. What is the difference between things like menalito and image processing libraries? Are both typically used together? – Genadinik Oct 17 '10 at 16:35
  • if you are new to that start with a simple one, like tftgallery. as all are frameworks they need some external libraries like ImageMagick. that libaries do the direct image manipulation like resizing, rotation, etc. – PeterMmm Oct 18 '10 at 08:10
  • I came across the GD php library which has a lot of useful API functions for image manipulation. What do you guys think of GD? – Genadinik Oct 18 '10 at 15:28
0

Ultimately I went with the Imagick library. It has been a few months since I have used it. There were few minor and solvable problems. Overall, I am extremely happy with it.

But happy in a kind of a way that I am also fearful that anything breaks because I definitely don't want to go debug it lol :)

But yeah, Imagick works very well - I recommend it to others.

Genadinik
  • 18,153
  • 63
  • 185
  • 284