1
vote
1answer
615 views

Add Footer(with Image) to Word Doc using POI API

I'm facing the following situation and problem: I have to retrieve an existing .doc/.docx file and modify it by adding a footer for every page of the document containing an image and some text. I've ...
2
votes
1answer
660 views

Apache POI fails to save (HWPFDocument.write) large word doc files

I want to remove word metadata from .doc files. My .docx files works fine with XWPFDocument, but the following code for removing metadata fails for large (> 1MB) files. For example using a 6MB .doc ...
2
votes
0answers
900 views

PHP code to convert PDF or Word Doc to editable online form [closed]

Is there a pre-existing script/class/library to achieve the conversion of PDF to WORD DOC? I am looking for something where I can pass a PDF or Word Doc that includes "fill in the blank" fields, ...
0
votes
1answer
218 views

how to convert parsed xml to doc?

I have an xml file with CSS. I can see it parsed in browser, and I need to convert the parsed data to doc file. I mean, I'd like to make a doc file with color, font style, font size, etc. are adapted ...
0
votes
1answer
706 views

Convert docx to doc without Office.Interop.Word

I'm trying to find the solution for converting .docx files to .doc in .NET. I've googled this problem near 3 day, trie a lot of variants: I've tried to convert with Office.Interop.Word. Yeah, thats ...
0
votes
2answers
236 views

Adding a header to docx file with python

I have several hundred word documents for which I need to add a specific header (as in a typical MS Word header/ footer). It is not that the header needs to be modified, these documents just don't ...
0
votes
1answer
245 views

Mark a checkbox as checked in a word (.docx) form

I'm using ruby/nokogiri to parse a word form and fill the fields. I've already managed to fill the text fields but I'm having difficulties to check a checkbox. I've looked on the document.xml and ...
1
vote
1answer
649 views

Cant open .doc file after downlod in php

I have a script to download files with php, and it works great. But when I download a .doc type file and I open it in MS Word it says that I have to select a encoding and most of the text is in this ...
1
vote
1answer
204 views

Is it possible to convert .doc to Spannables

Is there anyway you can convert a .doc .docx to a spannable text. I have looked through through the internet and unfortunately I dont think its possible but I thought I might as well throw out the ...
0
votes
2answers
1k views

Convert HTML & CSS to DOC(X)?

Is there some utility that could be called via command line to produce a doc(x) file? The source file would be HTML and CSS. I am trying to generate Word documents on the fly with PHP. I am only ...
0
votes
1answer
221 views

doc file from asp.net / vb with header

I would like to create a doc file (MS Word 2003) from a page asp.net / vb (dotnet 1.1) that contains a header and footer. I have managed to create the doc but how to set a header and a footer? Is ...
2
votes
3answers
4k views

PDF or Word creation documents with Yii?

Hello I'm building an application with Yii that will now generate reports. My client wants to edit the reports after these are generated. I think the best option is creating a Word document so my ...
4
votes
5answers
4k views

Reading or Converting word .doc files iOS

How are other apps on iOS able to read and write word docs? I see some other questions related to this and accepted answers are along the lines of "it can't be done." I don't want to just display a ...
0
votes
1answer
376 views

PHP: antiword and uploaded file

I'm creating some code that will upload the contents of a word document to a server, extract its text, and insert it into a database. exec("PATH=$PATH:/home1/myserver/bin && antiword " . ...
0
votes
2answers
236 views

Word document export from web app

I need to export word documents from a web app. I currently use NPOI for excel export, but it doesn't seem to cover word export. I've found Aspose Word, is there other valid alternatives? I need to ...
1
vote
2answers
619 views

Is there an opensource “MSWord doc to PDF” convert library

I am trying to convert word(.doc) into PDF on iOS device. Is there an opensource solution where I can use as a C/C++ lib or something? Many thanks!
2
votes
1answer
1k views

Convert doc to txt via commandline

We're searching a programm that allows us to convert a doc or docx document to a txt file. We're working with linux and we want to start a website that converts user uploaded doc files. We don't wanna ...
0
votes
1answer
497 views

Solr Cell / ExtractingRequestHandler cannot parse some *.doc files

I need to index content of doc/docx/pdf files uploaded by users and use Solr (1.4.1) ExtractingRequestHandler component (817165) for that. If that matters, I don't request indexing from it - the ...
1
vote
1answer
437 views

how to replace tags in MsWord doc files using php

let me explain my question this way... I have a doc file in which I have some text and formating and in different part of the doc file I have some TAGS (eg. IDS, LABELS, TOTAL, etc.). I wonder if it's ...
0
votes
1answer
458 views

Page margins on a PHP generated Word document (using fopen)

I recently posted a question on how to generate a .doc file without using the COM object - I had some great replies (thank you!) but unfortunately I need the document to be compatible with the old ...
1
vote
3answers
5k views

How do you display a formatted Word Doc in HTML/PHP?

What is the best way to display a formatted Word Doc in HTML/PHP? Here is the code I currently have but it doesn't format it: $word = new COM("word.application") or die ("Could not initialise MS ...
0
votes
1answer
468 views

Doc to PDF conversion and manipulation

On our production server (Windows Server 2008) we have a MS Word file. I have the following requirements: Convert the doc file into pdf Create a new PDF with the same page dimension (dimensions can ...
3
votes
2answers
4k views

Generating word documents with PHP

Hey guys, do you know any way to generate doc and docx files with PHP and without COM component? I've tried PHPWord, it creates docx files, but they cannot be opened in OpenOffice, they cause OO to ...
0
votes
1answer
1k views

Write MS Word Doc using itextsharp library

Can I write MS Word document using iTextSharp library? If yes, please give me sample code.
0
votes
1answer
698 views

Generating a Word doc with an image embedded into it over SSL in JAVA

Here is some code snippet to give you an idea of what I got so far. I can output the Word document fine this way. I can also access the image via the URL in the browser, but the Word documents src ...
3
votes
4answers
5k views

Read Microsoft Word Documents into Plain Text (DOC, DOCX) in Java

I'm looking for something in Java to read in Word documents to process their text.. all I need is there text, nothing fancy. I know about Apache POI, however it doesn't include support for DOCX right ...