1
Daigoro
How to make web-snapshot for links?
  • 2003/8/2 9:11

  • Daigoro

  • Quite a regular

  • Posts: 223

  • Since: 2003/7/3 2


I'm wondering if anybody has made a program to make a snapshot of a site. Looking at links on various XOOPS sites, I've seen alot of snapshots - but nobody explains how they made it.
Natualy I know how to grab the full screen or window and then edit it in some kind of paint program, but what I'm looking for is a program that will automate that task.

2
hsalazar
Re: How to make web-snapshot for links?
  • 2003/8/2 19:19

  • hsalazar

  • Just popping in

  • Posts: 78

  • Since: 2003/2/6 1


Daigoro:

There are, as you say, many ways to do this. What I do is simple:

1) I capture the screen using Alt + PrScr to copy the active window to the clipboard.

2) Open Fireworks and create a new file using Ctrl + N. Automatically it creates a canvas with the size of the image in the clipboard.

3) Paste the image using Ctrl + V.

4) Export the file using Ctrl + Shift + X

5) Select the tab "File" and there write the wanted width.

6) Press Export and write a filename.

That's it. Nothing fancy, just practical. If you want something else, visit a freeware or shareware repository and look for "screen capture". You'll find at least five or six good free programs.

Hope this is useful.


3
PureLuXus
Re: How to make web-snapshot for links?
  • 2003/8/3 7:00

  • PureLuXus

  • Not too shy to talk

  • Posts: 116

  • Since: 2002/1/3 2


and how google.icq.com
done this stuff?

4
Daigoro
Re: How to make web-snapshot for links?
  • 2003/8/3 10:45

  • Daigoro

  • Quite a regular

  • Posts: 223

  • Since: 2003/7/3 2


As usualy, you are right, if I search for a screen capture programs, then I will find many. But I'm looking for a browser-screen capture. One that will make a picture of the browserscreen as it's sopposed to look, and not how it's rendered in my specific screen resolusion. Also, it should be able to resize the picture.
Say I want to capture the main XOOPS site, then I would like to be able to specify that the captures file not exceed 150 pixels in width. The captureprogram should then grab the full screen in the width of the site (which appears to be something like 700 pixels), and the full height of the page (several thousand pixels). Then the picture should be scalled to 150pixels in width, and the same percentage in the height.
To do this manualy will be alot of work. Thats why I asked if anybody knew of a useable program.


5
Daigoro
Re: How to make web-snapshot for links?
  • 2004/4/12 17:16

  • Daigoro

  • Quite a regular

  • Posts: 223

  • Since: 2003/7/3 2


It's been a while since I asked the original question...
but finaly I've found a very nice (windows) program that does exactly what I want. It's even freeware.

Check out url2bmp at Pixel Technology's homepage.

The program both has a GUI, and can be used from the commandline, too, making it easy to integrate into scripts.

(Site is even available in both english and french!)

Regards,

6
ajaxbr
Re: How to make web-snapshot for links?
  • 2004/4/12 21:08

  • ajaxbr

  • Quite a regular

  • Posts: 276

  • Since: 2003/10/25


You might want to checkhttp://www.danvine.com/icapture/ andhttp://www.danvine.com/iecapture/. I've suggested to the author to start thinking about ways to prevent abuse, cuz it's great. I was wating for his OK to start a thread about his free service, but since you asked first there you have it

7
Daigoro
Re: How to make web-snapshot for links?
  • 2004/4/13 15:08

  • Daigoro

  • Quite a regular

  • Posts: 223

  • Since: 2003/7/3 2


Wow, thats a usefull tool.
Thanks for your info.

It's pretty different from the tool I wrote about in my previous post.

I'm afraide hes setup will be compleatly swamped - it was pretty dificult to get propper answers when I tried it just now.

I'd wish W3C, Google or some hugs company with money to spare, would contact him and setup a better server for hes project.

Regards,
Daigoro

8
Sievert
Re: How to make web-snapshot for links?
  • 2004/4/19 13:20

  • Sievert

  • Just popping in

  • Posts: 1

  • Since: 2004/4/19


Hi,

like you all, I'm still looking for something useful, but there seems to be no better answer for UNIX/Linux than the script I used. Assentially, it opens a VNC server X session 800x600, opens the URL in Mozilla, takes a screen snapshot, and resizes the snapshot to 153x115 px. The X session is finally closed. Lots of sleep statements; snapshot takes two minutes, but you can take thousands over a day.

No guarantee, no support, no nothing. Just as it is. Known issue: It left jobs behind -- no idea why. So clean up later or debug. Insert echo statements to debug.

May be it helps.


-Karsten
======= web-capture.sh ==================================

outfile=`echo "$1" | sed 's#http://##' | sed 's#/#_#'`.jpg
if [ -e "$outfile" ]; then
echo "found: $outfile"
exit
fi
echo "creating: $outfile"
# exit;

date
echo "starting: $1"
vncserver :163 -depth 24 -alwaysshared -geometry 850x640
DISPLAY_SAVE=$DISPLAY
DISPLAY=:163
export DISPLAY
echo "sleep 25"
sleep 25
mozilla -P leo $1 &
echo "sleep 45"
sleep 45
xwd -silent -root -display :163 | xwdtopnm | pnmscale 0.18 | pnmconvol sharpen.cvl | ppmtojpeg > $outfile
# pnmcut -left 10 -right -10 -top 100 -bottom -30
vncserver -kill :163
DISPLAY=$DISPLAY_SAVE
export DISPLAY
echo "sleep 30"
sleep 30
date
echo "done: $1"

========== sharpen.cvl =======================
P2
3 3
18
8 8 8
8 26 8
8 8 8

9
Daigoro
Re: How to make web-snapshot for links?
  • 2004/4/19 18:18

  • Daigoro

  • Quite a regular

  • Posts: 223

  • Since: 2003/7/3 2


Sievert, Looks nice, even if I can't test it on this Windows machine.

I'm sure I saw an extension for Mozilla on Linux that would do the same, but as I'm on a windows machine, it didn't matter for me at the time.


10
Herko
Re: How to make web-snapshot for links?
  • 2004/4/19 18:50

  • Herko

  • XOOPS is my life!

  • Posts: 4238

  • Since: 2002/2/4 1


google.icq.com uses an application calle Giraffe or something like that, which creates screenshots of sites you can preview. It is a windows app, but there's no option to save the screenshots... ANd there is no (free) web version of this application.

Herko

Login

Who's Online

228 user(s) are online (122 user(s) are browsing Support Forums)


Members: 0


Guests: 228


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits