Search found 6 matches
- 2011-09-01T23:23:13-07:00
- Forum: Users
- Topic: Exif script
- Replies: 0
- Views: 3066
Exif script
I need som help with this code. It will not work on my mac mini with snow leopard installed. <?php /* Create the object */ $im = new imagick( "/path/to/example.jpg" ); /* Get the EXIF information */ $exifArray = $im->getImageProperties( "exif:*" ); /* Loop trough exif properties */ foreach ...
- 2011-03-25T06:04:32-07:00
- Forum: Users
- Topic: ImageMagick rotate bug?
- Replies: 4
- Views: 8456
Re: ImageMagick rotate bug?
Good news. I used -auto-orient and that seems to fix the problem.
- 2011-03-25T05:03:50-07:00
- Forum: Users
- Topic: ImageMagick rotate bug?
- Replies: 4
- Views: 8456
Re: ImageMagick rotate bug?
I remember that when I took this photo I rotated the camera 90 degrees. I have tried -strip without any success (not sure if I used -strip in the right way). The link to my image is: http://www.thrutherockies.com/DSC_0419.JPG This is the PHP script that tries to rotate it 90 degrees left. $exec ...
- 2011-03-24T04:28:05-07:00
- Forum: Users
- Topic: ImageMagick rotate bug?
- Replies: 4
- Views: 8456
ImageMagick rotate bug?
Hi! I am using ImageMagick on my Mac Mini webserver to rotate images. I just discovered something very strange. If I scan my pictures (tif format) with my Epson scanner and rotate my images everything works ok. But today I took some photos (jpg format) with my Nikon D3000 and tried to rotate them ...
- 2011-03-02T03:35:54-07:00
- Forum: Users
- Topic: Problems with images on other disk (NAS)
- Replies: 4
- Views: 8218
Re: Problems with images on other disk (NAS)
I am not sure if I understand you, this is completely new for me. Let me show you my code. After the tif image is uploaded to my nas the following code is executed and nothing happens. $from_path = "ftp://xxx.xxx.xxx.xxx/image.tif"; $to_path = "ftp://xxx.xxx.xxx.xxx/image.jpg"; $exec = "/usr/local ...
- 2011-03-01T02:09:51-07:00
- Forum: Users
- Topic: Problems with images on other disk (NAS)
- Replies: 4
- Views: 8218
Problems with images on other disk (NAS)
Hi! I have a problem when using ImageMagick, before I had both php files and all images on the same disk (my iMac web server) And everything was working just fine. Now I'm using a Netgear ReadyNAS Duo for storage of every image file. The problem is that as soon as I have uploaded a file to the NAS I ...