Re: pdf conversion?

2008-08-31 Thread Brad Rogers
On Sun, 31 Aug 2008 17:02:14 -0400
"Zach Uram" <[EMAIL PROTECTED]> wrote:

Hello Zach,

> 1) convert from pdf to html and save any images, diagrams etc.

pdftohtml may be of use, from pdftohtml or poppler-utils packages.

> 2) convert from pdf to ASCII text

pdftotext from poppler-utils or xpdf-utils.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"

Just stop and take a second
U & Ur Hand - Pink


signature.asc
Description: PGP signature


Re: pdf conversion?

2008-08-31 Thread Javier Barroso
On Sun, Aug 31, 2008 at 11:02 PM, Zach Uram <[EMAIL PROTECTED]> wrote:

> This may sound strange but I am looking for a Linux utility that will let
> me:
>
> 1) convert from pdf to html and save any images, diagrams etc.
> 2) convert from pdf to ASCII text

pdftotext && pdftohtml (i didn't test it) could help you

>From poppler-utils package


>
> Zach
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>
>


pdf conversion?

2008-08-31 Thread Zach Uram
This may sound strange but I am looking for a Linux utility that will let me:

1) convert from pdf to html and save any images, diagrams etc.
2) convert from pdf to ASCII text

Zach


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: from scanner to pdf conversion util?

2007-06-05 Thread Andrew Perrin

I have a very basic script on my website:

http://perrin.socsci.unc.edu/tips
http://perrin.socsci.unc.edu/tips/src/pdfscan-pl.txt

Andy

--
Andrew J Perrin - andrew_perrin (at) unc.edu - http://perrin.socsci.unc.edu
Assistant Professor of Sociology; Book Review Editor, _Social Forces_
University of North Carolina - CB#3210, Chapel Hill, NC 27599-3210 USA
New Book: http://www.press.uchicago.edu/cgi-bin/hfs.cgi/00/178592.ctl



On Tue, 5 Jun 2007, ISHWAR RATTAN wrote:



Is there any software that will scan a page/document and
convert to pdf in one ore more steps? Something similar to
Windows scan2pdf family..

-ishwar


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject 
of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: from scanner to pdf conversion util?

2007-06-05 Thread Brad Rogers
On Tue, 5 Jun 2007 16:59:33 -0400 (EDT)
ISHWAR RATTAN <[EMAIL PROTECTED]> wrote:

Hello ISHWAR,

> Is there any software that will scan a page/document and
> convert to pdf in one ore more steps? Something similar to

XSANE (scanning software) supports PDF save natively.

-- 
 Regards  _
 / )   "The blindingly obvious is
/ _)radnever immediately apparent"

If a thought came in your head it would die of loneliness
I Don't Like You - Stiff Little Fingers


signature.asc
Description: PGP signature


from scanner to pdf conversion util?

2007-06-05 Thread ISHWAR RATTAN


Is there any software that will scan a page/document and
convert to pdf in one ore more steps? Something similar to
Windows scan2pdf family..

-ishwar


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: html to pdf conversion

2005-05-25 Thread Rogério Brito
On May 23 2005, Deboo ^ wrote:
> Is there a html to pdf converter utility/script or any such thing
> available for debian? I could not find using apt search.

The program/package htmldoc works wonderfully for my taste and since it
lets you use Times, Courier and Helvetica as fonts for the PS or PDF, the
files generated are quite small (since these fonts are in the Base 14 set).


I hope this helps, Rogério.

-- 
Rogério Brito : [EMAIL PROTECTED] : http://www.ime.usp.br/~rbrito
Homepage of the algorithms package : http://algorithms.berlios.de
Homepage on freshmeat:  http://freshmeat.net/projects/algorithms/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: html to pdf conversion

2005-05-23 Thread Phil Dyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Deboo ^ said:
> Is there a html to pdf converter utility/script or any such thing
> available for debian? I could not find using apt search.

you can use a combination of html2ps and ps2pdf. They are both available
as deb packages.


- --

/phil


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (MingW32)
Comment: Public Key: http://www.dyermaker.org/gpgkey

iD8DBQFCkjZtGbd/rBLcaFwRAkNFAKCiz7AnK+MoA3W3QjuNU7pQ2E5zRACePGEH
m2axAubqEH753gePNJ9e8R0=
=28DK
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: html to pdf conversion

2005-05-23 Thread Karsten M. Self
on Mon, May 23, 2005 at 02:59:19PM -0400, Deboo ^ ([EMAIL PROTECTED]) wrote:
> Is there a html to pdf converter utility/script or any such thing
> available for debian? I could not find using apt search.

You've got HTML to PS.  Then PS to PDF is trivial.  The GS scripts
require an input and output file

sudo aptitude install html2ps gs-common
for f in *.html
do 
# Names of PS & PDF
$fpdf=$( echo $f | sed -e 's/\.html/.pdf/' )
html2ps $f - | ps2pdf - $fpdf
done

Note that what you get out _won't_ in all likelihood look much like the
original HTML.  It's going to be a largely unstyled, though if your
document includes contextual markup (e.g.:   , etc.) rather than
stupid box-and-font tricks, it should be highly readable and will get
its own automajick ToC stuff.  You won't get pretty colors and all that
jazz.

Oooh  Unless you RTFM.  Neat, I just learned some stuff :-)


Peace.

-- 
Karsten M. Self http://kmself.home.netcom.com/
 What Part of "Gestalt" don't you understand?
Free Software Primer -- concepts you need to understand
http://twiki.iwethey.org/Main/FreeSoftwarePrimer


signature.asc
Description: Digital signature


Re: html to pdf conversion

2005-05-23 Thread ice.dp
On 5/23/05, Deboo ^ <[EMAIL PROTECTED]> wrote:
> On 5/23/05, Glenn English <[EMAIL PROTECTED]> wrote:
> > On Mon, 2005-05-23 at 14:59 -0400, Deboo ^ wrote:
> > > Is there a html to pdf converter utility/script or any such thing
> > > available for debian? I could not find using apt search.
> >
> > Have you considered bringing up the file in a browser and "printing" it
> > to a pdf file?
> 
> 
> It's a many paged html file, aa tree like file actually, so it would
> be hard to print it in pdf that way.
> 
> --
> Please don't Cc: me, I'm subscribed to the list.
> 
> 


-- 
http://counter.li.org  #387898



Re: html to pdf conversion

2005-05-23 Thread Deboo ^
On 5/23/05, Glenn English <[EMAIL PROTECTED]> wrote:
> On Mon, 2005-05-23 at 14:59 -0400, Deboo ^ wrote:
> > Is there a html to pdf converter utility/script or any such thing
> > available for debian? I could not find using apt search.
> 
> Have you considered bringing up the file in a browser and "printing" it
> to a pdf file?


It's a many paged html file, aa tree like file actually, so it would
be hard to print it in pdf that way.

-- 
Please don't Cc: me, I'm subscribed to the list.



Re: html to pdf conversion

2005-05-23 Thread Glenn English
On Mon, 2005-05-23 at 14:59 -0400, Deboo ^ wrote:
> Is there a html to pdf converter utility/script or any such thing
> available for debian? I could not find using apt search.

Have you considered bringing up the file in a browser and "printing" it
to a pdf file?

-- 
Glenn English
[EMAIL PROTECTED]
GPG ID: D0D7FF20


signature.asc
Description: This is a digitally signed message part


html to pdf conversion

2005-05-23 Thread Deboo ^
Is there a html to pdf converter utility/script or any such thing
available for debian? I could not find using apt search.

Regards,
Deboo

-- 
Please don't Cc: me, I'm subscribed to the list.



Re: Tex to PDF conversion trouble (pdflatex)

2002-09-30 Thread Alan Shutko

Tom Cook <[EMAIL PROTECTED]> writes:

> Just as a note, I recommend tex2pdf instead of pdflatex.  I don't
> think there is a .deb for it, but it handles graphic files much
> better, converting encapsulated postscript to encapsulated PDF, and
> also generates nice bookmarks and links and stuff.

All stuff you can do yourself if you know how (it just calls the same
programs you would) but it does encapsulate things nicely.

-- 
Alan Shutko <[EMAIL PROTECTED]> - In a variety of flavors!
The good of the people is the chief law.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Tex to PDF conversion trouble (pdflatex)

2002-09-30 Thread Tom Cook

David P James wrote:
> 
> Alan Shutko was roused into action on 09/27/02 23:12 and wrote:
> > David P James <[EMAIL PROTECTED]> writes:
> >
> >
> >>In case this matters, tetex-bin and tetex-base are installed.
> >
> >
> > Install tetex-extra, I think.
> >
> 
> Yep, that seems to have done the trick, sort of. Lyx is still not
> converting directly to PDF or PS for printing, but I can run pdflatex at
> the command line now. Ktexmaker2 is functionning fully however, and that
> is probably what I'll use at it is a nice program that facilitates
> learning TeX formatting.

Just as a note, I recommend tex2pdf instead of pdflatex.  I don't think
there is a .deb for it, but it handles graphic files much better,
converting
encapsulated postscript to encapsulated PDF, and also generates nice 
bookmarks and links and stuff.

Tom


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Tex to PDF conversion trouble (pdflatex)

2002-09-28 Thread David P James

Alan Shutko was roused into action on 09/27/02 23:12 and wrote:
> David P James <[EMAIL PROTECTED]> writes:
> 
> 
>>In case this matters, tetex-bin and tetex-base are installed.
> 
> 
> Install tetex-extra, I think.
> 

Yep, that seems to have done the trick, sort of. Lyx is still not 
converting directly to PDF or PS for printing, but I can run pdflatex at 
the command line now. Ktexmaker2 is functionning fully however, and that 
is probably what I'll use at it is a nice program that facilitates 
learning TeX formatting.
-- 
David P. James
4th Year Economics Student
Queen's University
Kingston, Ontario
http://members.rogers.com/dpjames/

The bureaucratic mentality is the only constant in the universe.
-Dr. Leonard McCoy, Star Trek IV


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Tex to PDF conversion trouble (pdflatex)

2002-09-28 Thread J.H.M. Dassen (Ray)

On Fri, Sep 27, 2002 at 23:12:37 -0400, Alan Shutko wrote:
> David P James <[EMAIL PROTECTED]> writes:
> > In case this matters, tetex-bin and tetex-base are installed.
> 
> Install tetex-extra, I think.

Yes. See #143751, "tetex-bin: PDF generation broken when tetex-extra isn't
installed".

Ray
-- 
Friends don't send friends HTML email
Declan McCullagh on the "features" of Javascript in email,
http://www.lwn.net/2001/0208/a/htmlprivacy.php3


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Tex to PDF conversion trouble (pdflatex)

2002-09-27 Thread Alan Shutko

David P James <[EMAIL PROTECTED]> writes:

> In case this matters, tetex-bin and tetex-base are installed.

Install tetex-extra, I think.

-- 
Alan Shutko <[EMAIL PROTECTED]> - In a variety of flavors!
"Yeeaahh, I'm def-in-ate-ly an excellent Super Hero...-Sewer Urchin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Tex to PDF conversion trouble (pdflatex)

2002-09-27 Thread David P James

Having now had some annoying, incomprehensible screw-up with WP9 where 
its equation editor no longer displays things correctly, I've started 
looking for alternatives (again). OpenOffice and KOffice have both been 
ruled out because of a problem with silly looking output where 
accent-type characters float miles above the character that they are 
supposed to be on top of.

I've been experimenting with LyX and once I figure out what it is 
actually doing by looking at the file it generates in an editor like 
kate I'll probably carry on that way. At any rate, I can't seem to print 
anything from it. I tried exporting it to .dvi or .pdf as well as 
printing to file, but no go. I was able to export it to .tex however. So 
I ran pdflatex and texi2pdf on the .tex file and got the following error 
message with both:

I can't find the format file `pdflatex.fmt'!

So off I went and googled on that and came up with a few bites, notably 
that I had to create such a file (which I have done using 'pdftex -ini 
-fmt=pdflatex latex.ltx') and that I had to put it in the TEXFORMATS 
path of texmf.cnf. I found that file sitting in /etc/texmf. 
Unfortunately, I can't figure out the path stucture of anything in that 
file, as it all begins with .; , and, to top it off, one is apparently 
not supposed to edit it anyway.

So, what I'd like to know is:
1) Where do I put pdflatex.fmt now that I have created it
2) Where and how do I specify a path to it

In case this matters, tetex-bin and tetex-base are installed.
Thanks,
-- 
David P. James
4th Year Economics Student
Queen's University
Kingston, Ontario
http://members.rogers.com/dpjames/

The bureaucratic mentality is the only constant in the universe.
-Dr. Leonard McCoy, Star Trek IV


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]