Search found 2 matches

by Silvertiger
2011-03-27T06:39:15-07:00
Forum: Users
Topic: Using Convert directly with HTTPS
Replies: 2
Views: 6726

Re: Using Convert directly with HTTPS

if you have no firewall restrictions or issues, the following works for me:
(requires imageMagick and imagick for PHP)


$file_to_adjust = "https://www.myfile.com/filename.jpg";
$handle = fopen($file_to_adjust, 'rb');
$img = new Imagick();
$img->readImageFile($handle);
$img->thumbnailImage ...
by Silvertiger
2011-03-27T06:34:03-07:00
Forum: Users
Topic: Video Thumbnail (remote file)
Replies: 1
Views: 5520

Video Thumbnail (remote file)

I have a system set up whereby my users upload files from their local machines directly to an Amazon AWS S3 repository, meaning that I do not have "local" access on my server of the "original" files to creat thumbnails from. I have been able to create a workaround for making thumbnails of images ...