Is there a module that grabs a remote page and prints thumbnail image?

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Is there a module that grabs a remote page and prints thumbnail image?

    Hi, I am not a Perl programmer but I need to know this so that I can
    design a Perl script and get a programmer to code it:

    Is there any Perl module that grabs a remote website and return a
    thumbnail image?

    P/S: My first post here.

    Thanks.
    Blue Guest

  2. Similar Questions and Discussions

    1. How to get original image of thumbnail image
      Hi To All i am doing one task, like storing image in database and loding back t Datagrid, in that i am taking thumbnail, It working fine. but...
    2. Original Image & Thumbnail on same page?
      Hi, I'm pretty new at this, so forgive my ignorance. I'm running DW MX 2004 with PHP and MySql. Got the database running fine and I'm trying to...
    3. Create Image OF remote web page(s)
      Hey all, I've spent about two weeks trying to figure this out. What I need is a script to grab a webpage and display it as an (thumbnail?)...
    4. Thumbnail image in Flash to larger image in new window?
      I have a series of thumbnail images in Flash and I want the user to be able to click on the thumbnail and get a larger photo. I know how to make the...
    5. Image Thumbnail
      Create ACDSee style image Browser, only one minute. download sample from http://www.viscomsoft.com/imagethumbnail.htm
  3. #2

    Default Re: Is there a module that grabs a remote page and prints thumbnail image?

    Blue <superbaby@myjaring.net> wrote:
    > Is there any Perl module that grabs a remote website and return a
    > thumbnail image?
    A thumbnail image of the URL you've specified?

    I don't think so (but I'm happy to be proven wrong).

    Some questions for you to consider...

    What pixel-size page would you expect your thumbnail to
    represent? 1024x768? 800x600? 1000x1000?

    What should happen with DHTML elements (bits that move)? Maybe they
    shouldn't be rendered, but what if those elements are static and
    contribute to the page layout?

    What should happen to javascript (and java, flash, realplayer, and other
    embedded applets for that matter)? Should they be rendered or ignored? How
    would you decide (programatically)?

    Chris
    Chris Davies Guest

  4. #3

    Default Re: Is there a module that grabs a remote page and prints thumbnail image?

    Blue wrote:
    > Is there any Perl module that grabs a remote website and return a
    > thumbnail image?
    A namesake of yours just posted exactly the same question to CLPmisc. You
    may want to check with him for answers he got.

    jue


    Jürgen Exner Guest

  5. #4

    Default Re: Is there a module that grabs a remote page and prints thumbnail image?

    Chris Davies schreef:
    > A thumbnail image of the URL you've specified?
    > I don't think so (but I'm happy to be proven wrong).
    Pipe it through links -dump, and string() the result on a GD-image.
    ;)

    --
    Affijn, Ruud

    "Gewoon is een tijger."


    Dr.Ruud Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139