LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   A bit off linux subject, but a question nonetheless (https://www.linuxquestions.org/questions/linux-software-2/a-bit-off-linux-subject-but-a-question-nonetheless-76460/)

klintonray 07-27-2003 08:31 PM

A bit off linux subject, but a question nonetheless
 
Hey all, I was just wondering if there was a way to save a webpage as one big picture file..like jpeg or bitmap. Thanx all!!

fancypiper 07-27-2003 08:46 PM

I don't know, but you can mirror it.

wget -m <url>

darin3200 07-27-2003 09:23 PM

you could always print the page to pdf.

klintonray 07-27-2003 09:37 PM

how would i mirror it or print it to pdf? What is mirroring it btw?

gabriele_101 07-27-2003 09:56 PM

"Mirroring it" in this case would mean downloading and saving the HTML file and all of the files associated with it (graphics and linked files). Be careful of what parameters you use ("-m", the one suggested turns on full recursion, so you'll get a copy of the entire web site not just the page). If you want to get the page and all of the graphics you'll need to set the recursion level to 1 -l "-l 1". Unfortunately, you'll get more than you want. Read the wget man page, and if you have Perl LWP installed, check out GET. You may want to try
Code:

GET -o ps http://www.some-where-else.net/thing.html | ps2pdf - output.ps
to get a pdf file. Not sure how well that will work, so let me know ;)

gabriele_101 07-27-2003 10:03 PM

OK, nevermind about the GET command, it does not do the graphics. Maybe next version.

fancypiper 07-27-2003 10:14 PM

You could also grab a screenshot of the browser.

darin3200 07-27-2003 10:25 PM

to prin to pdf
>file
>print
and you should be able to select pdf printer

klintonray 07-27-2003 10:52 PM

awww i see...thanx that works


All times are GMT -5. The time now is 09:25 PM.