Go Back   Velocity Reviews > Newsgroups > Java
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Java - Word/Excel/PowerPoint Conversion to Images

 
Thread Tools Search this Thread
Old 09-06-2005, 02:54 AM   #1
Default Word/Excel/PowerPoint Conversion to Images


I have been looking for a way to convert Office files (.doc/.xls/.ppt)
to images such as tif or jpegs.

Been looking thru Jakarta POI but it doesn't look to be ready for docs
yet. Also, I am not sure it can convert to tifs.

Does anyone have ideas on how this can be done?

I would like to do it in Java or C. Also, I am working in a Linux
environment.

Thanks,
Dan



djgavenda2@yahoo.com
  Reply With Quote
Old 09-06-2005, 04:28 AM   #2
Roedy Green
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images
On 5 Sep 2005 18:54:14 -0700, wrote or quoted :

>I have been looking for a way to convert Office files (.doc/.xls/.ppt)
>to images such as tif or jpegs.
>
>Been looking thru Jakarta POI but it doesn't look to be ready for docs
>yet. Also, I am not sure it can convert to tifs.
>
>Does anyone have ideas on how this can be done?


see http://mindprod.com/jgloss/pdf.html

It might be possible to go via PDF. There are a number of tools to
convert to PDF.

The chain could get long, but possibly PDF -> postscript -> image.

PDFs are getting to be very common on the web. Perhaps you could use
them in preference to images. Images are very fluffy.

--
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.


Roedy Green
  Reply With Quote
Old 09-07-2005, 01:09 AM   #3
Joan
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

<> wrote in message
news: oups.com...
>I have been looking for a way to convert Office files
>(.doc/.xls/.ppt)
> to images such as tif or jpegs.
>
> Been looking thru Jakarta POI but it doesn't look to be ready
> for docs
> yet. Also, I am not sure it can convert to tifs.
>
> Does anyone have ideas on how this can be done?
>
> I would like to do it in Java or C. Also, I am working in a
> Linux
> environment.
>
> Thanks,
> Dan
>

I was reading a perl magazine a couple weeks ago and there was a
perl
script to extract graphics pictures from MS Word documents. You
could do
the same thing in Java. Use google there are lots of things out
there.



Joan
  Reply With Quote
Old 09-07-2005, 08:56 PM   #4
djgavenda2@yahoo.com
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images
I have google'd about converting Office files to images....came back w/
not much useful stuff.

Anyone else have info on this?? I would like to do it quickly
too...meaning w/o gui and asap.

Thanks,
Dan

Joan wrote:
> <> wrote in message
> news: oups.com...
> >I have been looking for a way to convert Office files
> >(.doc/.xls/.ppt)
> > to images such as tif or jpegs.
> >
> > Been looking thru Jakarta POI but it doesn't look to be ready
> > for docs
> > yet. Also, I am not sure it can convert to tifs.
> >
> > Does anyone have ideas on how this can be done?
> >
> > I would like to do it in Java or C. Also, I am working in a
> > Linux
> > environment.
> >
> > Thanks,
> > Dan
> >

> I was reading a perl magazine a couple weeks ago and there was a
> perl
> script to extract graphics pictures from MS Word documents. You
> could do
> the same thing in Java. Use google there are lots of things out
> there.




djgavenda2@yahoo.com
  Reply With Quote
Old 09-07-2005, 11:07 PM   #5
Oliver Wong
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

<> wrote in message
news: ups.com...
>I have google'd about converting Office files to images....came back w/
> not much useful stuff.
>
> Anyone else have info on this?? I would like to do it quickly
> too...meaning w/o gui and asap.
>
> Thanks,
> Dan


Do you plan on using Office or writing a stand-alone app?

- Oliver




Oliver Wong
  Reply With Quote
Old 09-08-2005, 12:56 AM   #6
djgavenda2@yahoo.com
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images
I do not plan on using Office. I want to convert the files
(.doc/.xls/.ppt) to tifs to be used elsewhere.

Want to create a java/c app that converts them to tifs.


Oliver Wong wrote:
> <> wrote in message
> news: ups.com...
> >I have google'd about converting Office files to images....came back w/
> > not much useful stuff.
> >
> > Anyone else have info on this?? I would like to do it quickly
> > too...meaning w/o gui and asap.
> >
> > Thanks,
> > Dan

>
> Do you plan on using Office or writing a stand-alone app?
>
> - Oliver




djgavenda2@yahoo.com
  Reply With Quote
Old 09-08-2005, 01:12 AM   #7
Joan
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

<> wrote in message
news: oups.com...
>I do not plan on using Office. I want to convert the files
> (.doc/.xls/.ppt) to tifs to be used elsewhere.
>
> Want to create a java/c app that converts them to tifs.

<snip>

I have a screen dump program written in java. If you want all the
stuff
to be in your tiff, and it sounds like you do, try that.



Joan
  Reply With Quote
Old 09-08-2005, 04:46 PM   #8
Oliver Wong
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

"Joan" <> wrote in message
news:k9mdnTIdw5OaH4LeRVn-...
>
> <> wrote in message
> news: oups.com...
>>I do not plan on using Office. I want to convert the files
>> (.doc/.xls/.ppt) to tifs to be used elsewhere.
>>
>> Want to create a java/c app that converts them to tifs.

> <snip>
>
> I have a screen dump program written in java. If you want all the stuff
> to be in your tiff, and it sounds like you do, try that.


To dump the screen, you must have a program which can render the
..DOC/.XLS/.PPT files onto screen, but the OP says (s)he does not plan on
using Office.

- Oliver




Oliver Wong
  Reply With Quote
Old 09-08-2005, 04:46 PM   #9
Oliver Wong
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

<> wrote in message
news: oups.com...
>I do not plan on using Office. I want to convert the files
> (.doc/.xls/.ppt) to tifs to be used elsewhere.
>
> Want to create a java/c app that converts them to tifs.


Do you know the file formats?

- Oliver




Oliver Wong
  Reply With Quote
Old 09-08-2005, 08:29 PM   #10
Joan
 
Posts: n/a
Default Re: Word/Excel/PowerPoint Conversion to Images

"Oliver Wong" <> wrote in message
news:41ZTe.166454$wr.142980@clgrps12...
>
> "Joan" <> wrote in message
> news:k9mdnTIdw5OaH4LeRVn-...
>>
>> <> wrote in message
>> news: oups.com...
>>>I do not plan on using Office. I want to convert the files
>>> (.doc/.xls/.ppt) to tifs to be used elsewhere.
>>>
>>> Want to create a java/c app that converts them to tifs.

>> <snip>
>>
>> I have a screen dump program written in java. If you want all
>> the stuff
>> to be in your tiff, and it sounds like you do, try that.

>
> To dump the screen, you must have a program which can render
> the .DOC/.XLS/.PPT files onto screen, but the OP says (s)he
> does not plan on using Office.
>
> - Oliver


If the issue is cost, MS has free viewer programs that I use to
display XLS and PPT
files on screen; and they work very well. They also have for DOC
but I already
have MS Word. They have more viewers and converters as well.

http://www.microsoft.com/office/000/viewers.asp

Microsoft Office File Converter Pack
Microsoft Word
Microsoft PowerPoint
Microsoft Outlook
Microsoft Excel
Microsoft Access
Microsoft Visio



Joan
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Error: expected constructor, destructor or type conversion before '(' token suse Software 0 03-09-2009 03:25 AM
Blur Images Display DKS General Help Related Topics 0 06-03-2008 04:14 PM
Conversion tool:Flash2Video hely0123 Software 0 11-01-2007 03:30 AM
How to keep images on DVD from being copied WVAngel Software 0 11-18-2006 03:39 AM
images look wider in dvd antispam1@golfvalleyhomes.com DVD Video 0 10-09-2005 06:43 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

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