vote up 2 vote down star
1

This is being done programmatically and I wish to know is there a way to resolve this issue by maybe passing some kind of flag or something during the conversion process which will make the cell background transparent in the .pdf document.

please note an example pdf output. the original ,xls file does not overlapping edges at all.

http://www.freeimagehosting.net/uploads/4ab8dd9af0.jpg

this is the original .xls file before pdf export

http://www.freeimagehosting.net/uploads/0cdcaad47a.jpg

both open office 2.4 and 3.0. have this same defect.

Suggestions would be most welcome, this is the last thing holding this project up.

follow this link for an example on the open office website http://user.services.openoffice.org/en/forum/viewtopic.php?f=20&t=13528

here is the issue tracker link http://www.openoffice.org/issues/show_bug.cgi?id=97856

and some code for you, it is jython 2.2.1 with java 2.5

def _save_as_pdf(self, docSource):
    dirName=os.path.dirname(docSource)
    baseName=os.path.basename(docSource)
    baseName, ext=os.path.splitext(baseName)
    dirTmpPdfConverted=os.path.join(dirName + DIR + PDF_TEMP_CONVERT_DIR)
    if not os.path.exists(dirTmpPdfConverted):
        os.makedirs(dirTmpPdfConverted)
    pdfDest=os.path.join(dirTmpPdfConverted + DIR + baseName + ".pdf")
    url_save=self._create_UNO_File_URL(pdfDest)
    properties=self._create_properties(ext)
    try:
        try:
            self._xstorable=UnoRuntime.queryInterface(XStorable, self._doc)
            self._xstorable.storeToURL(url_save, properties)
        except AttributeError,e:
                self.logger.info("saving as pdf has problem: (" + str(e) + ")")
                raise e
        except:
            self.logger.info("storeToURL exception")
            raise
    finally:
        self.logger.info("converted document " + baseName + ext)
        if not self._doc:
            xCloseable = UnoRuntime.queryInterface(XCloseable, self._doc)
            if not xCloseable:
                try:
                    xCloseable.close(false)
                except CloseVetoException, (ex):
                    xComp = UnoRuntime.queryInterface(XComponent, self._doc)
                    xComp.dispose()
        else:
            xComp = UnoRuntime.queryInterface(XComponent, self._doc)
            xComp.dispose()
        self._doc=None

def _create_properties(self,ext):
    properties=[]
    p=PropertyValue()
    p.Name="Overwrite"
    p.Value=True
    properties.append(p)
    p=PropertyValue()
    p.Name="FilterName"
    if   ext==".doc":
        p.Value='writer_pdf_Export'
    elif ext==".rtf":
        p.Value='writer_pdf_Export'
    elif   ext==".html":
        p.Value='writer_pdf_Export'
    elif ext==".htm":
        p.Value='writer_pdf_Export'
    elif ext==".xls":
        p.Value='calc_pdf_Export'
    elif ext==".tif":
        p.Value='draw_pdf_Export'
    elif ext==".tiff":
        p.Value='draw_pdf_Export'
    properties.append(p)
    return tuple(properties)
flag
3  
Why don't you raise an actual BUG with OOo (I know you've already asked on their fora). – paxdiablo Jan 8 '09 at 2:55
Also, can you post the code and/or spreadsheet? Did I just notice that this is an XLS file (from Excel) rather than an ODS? – paxdiablo Jan 8 '09 at 2:58
yes xls file. okay ill post some code and an original example of xls spreadsheet. – Setori Jan 8 '09 at 3:36
it is an .xls created in Excel. – Setori Jan 15 at 3:50

2 Answers

vote up 1 vote down

Is it possible for you to make the row containing the oversized checkbox a bit larger?

That would be a hack, and not what you asked for, but it might yield results in a shorter timeframe than waiting for a fix.

I have checked the checkboxes in both Office 2003 and OpenOffice 3 and found that while Office allows a Transparent background on objects, OpenOffice does not . In the release notes of 2.4 Transparant backgrounds are mentioned for form objects, but I could not find a way to specify this on the checkbox.

As far as I can see it could even be that the transparent checkbox background in "normal print" and print preview is a hack, as there does not seem to be a property indicating a transparent background (the background color is Default whereas office has a background transparent).

What is positive, however, is that printing is OK. Printing to a file-based printer where you can define the filename would be the solution. Perhaps Cups has a print-to-pdf-file printer? (In that case you would not use PDF export but Print).

link|flag
point taken. though there might be results using the Novel open office 3.xx edition. Unfortunately we cannot change the template. It is spread out over all the customers we have. Thanks for the comeback! – Setori Jul 1 at 15:01
vote up 0 vote down

Can you use print to PDF instead of the built-in PDF export?

Is this on Windows? Can you use the Excel Viewer to open and save/print the document?

Can you use itext to manipulate the PDF after it is created to fix the problem?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.