Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to write a simple web service (I'm not particular about the language implementation) that runs on a FreeBSD web server at nearlyfreespeech.net, takes a URL that points to a JPEG image with some additional parameters like the following:

http://www.myserver.com/script.cgi?url=http://www.destination.com/image.jpg&width=320

and performs the following operations:

  1. How do I parse the URL's parameters? (destination URL plus some additional parameters for processing)
  2. How can I fetch the contents of the image at the URL provided in the parameter?
  3. Based on the additional parameters, perform some processing on the contents (out of scope of this question)
  4. How can I return the processed image to be properly recognized as an image to be displayed in a browser (as opposed to returning text)?

I presume this wouldn't be difficult to do with a scripting language like Perl, but I don't know where to begin for steps 1, 2, and 4.

share|improve this question
1  
So, you've basically listed the how. So what do you want exactly? Are you having a specific issue? – netcoder Aug 17 '12 at 19:26

closed as not constructive by netcoder, dgw, Nifle, Fluffeh, tripleee Aug 19 '12 at 20:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

The url you supplied is invalid, but you could encode the querystring such as: http://www.myimageserver.com?url=http%3a%2f%2fwww.flickr.com%2fsomeimage.jpg%2f320%2f200 (here the flickr url is urlencoded, you can try urlencoding online here: http://www.opinionatedgeek.com/DotNet/Tools/UrlEncode/Encode.aspx)

  1. Using php, you can get the parameters of the url. To access "http://www.flickr.com/someimage.jpg/320/200" in php you simply use:

    $url = $_GET['url']; // set $url to the string: "http://www.flickr.com..."

    // ... parsing can be done here

  2. To get the contents of the url:

    $url_content = file_get_contents($url);

  3. Now you can do your processing.

  4. And to return the output, you can use echo:

    echo $processed_content;

share|improve this answer
Does echo work with binary (image) content as well? – Jeff Axelrod Aug 17 '12 at 19:20
Seems so, as long as you add the proper headers (check this question stackoverflow.com/questions/4286677/…) – ribot Aug 17 '12 at 19:27
editing headers is not enough, he doesn't want to show a single image, he wants to show the entire web page – alpera Aug 17 '12 at 19:29
@alpera that is not correct, the sample URL I provided is a straight image. – Jeff Axelrod Aug 17 '12 at 19:30
1  
Jeff Axelrod: note that your url is still incorrect. To add another variable after url= you use an ampersand, such as myimageserver.com?url=http%3a%2f%2fwww.flickr.com%2fsomeimage.j… – ribot Aug 17 '12 at 19:30
show 2 more comments

I've been working on a PHP scraper recently, so I'm reasonably well-acquainted with some of these issues.

I'd suggest the following solutions for those issues:

  1. You can get the parameters easily enough with $_GET or $_POST. If you need to get other parts of the URL, you can use parse_url()

  2. While file_get_contents() will work, cURL is a much more sophisticated and powerful solution.

  3. cURL can return a file handle containing whatever file has been downloaded, and it can be processed at that point.

  4. You can then use fwrite() to write the file contents to a local file

share|improve this answer

I like python for this sort of thing. Specifically, a Python WSGI application, sitting on a WSGI server should be fine for your application.

Python comes with a "simple server" upon which you can test. For deployment, you may want to find third party WSGI servers, like CherryPy's WSGI server or Rocket (both implemented entirely in python).

I would recommend python 3.2 if possible, as the GIL is much better, and this has an impact on multi-threaded WSGI servers like the ones I mentioned - CherryPy and Rocket.

Read up on WSGI for more information. At the Python sit e, PEP 333 and 3333.

share|improve this answer
I just did a quick check on nearlyfreespeech.net's support of WSGI and it doesn't look like it's well supported, if at all. From their forums: I realize that without mod_python or WSGI, Python is suboptimal, and indeed an equivalent script in PHP is almost instantaneous. – Jeff Axelrod Aug 17 '12 at 19:15

this is an example and work for jpeg images only.

<?
$url = $_GET['url'];

$im = imagecreatefromjpeg($url);
header("Content-Type: image/jpeg");

for($i=0;$i<100;$i++)
{
    for($j=0;$j<100;$j++)
    {
        if(rand(0,1))
        {
            $rand = rand(0,4);
            imagesetpixel($im,$i,$j,imagecolorallocate($im, 255, 255, 255));
        }
    }
}

imagejpeg($im);
?>
share|improve this answer
up vote 0 down vote accepted

Here's how I did it in Perl:

#!/usr/bin/perl
use CGI qw(:standard);
use IO::Handle;
use LWP::Simple;
use File::Temp;
use File::Slurp;

$url = param('url');
$width = param('width');
$height = param('height');
$content = get($url);

$in = File::Temp->new( SUFFIX => '.jpg' );
print $in $content;

$out = File::Temp->new( SUFFIX => '.jpg' );
system("convert $in -resize $width" . "x" . "$height $out");

my $q = new CGI;
print $q->header( - type => "image/jpeg", -expires => "-1d" );

$content2 = read_file($out);
print $content2;
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.