Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
49 views

There is something weird happening in the interaction between libreoffice, cmake and wsl. I have a bunch of ODT files in a directory and I'm trying to use cmake to generate a makefile which will ...
GSKI's user avatar
  • 23
1 vote
2 answers
2k views

I have a 13 column xlsx and I want convert to pdf. I use this code: "soffice" ,"--headless","--convert-to", "pdf" , filepath ,"--outdir",outpath. I ...
abby_520's user avatar
0 votes
1 answer
1k views

I want to convert the csv file to pdf file from command line using soffice command. But my csv file is colon separated instead of comma. If I use command: soffice --convert-to pdf ./sampleCSVFile.csv ...
user avatar
2 votes
1 answer
2k views

I'm trying to get LibreOffice (more specifically, soffice) to run as a service on an Ubuntu server (20.04.3), but I've just not been able to make it work. It's the first time I'm trying to set up a ...
sakinobashi's user avatar
1 vote
0 answers
562 views

I am using libreoffice convert to get a pdf from a doc file. locally with libreoffice software installed, everything is working perfectly. On heroku, after deploying and using buildpacks specifically: ...
DavedAndreh's user avatar
1 vote
1 answer
727 views

To test a function, where I raise an exception when the first argument is not of integer type: def magicWithInteger(integerA): if not isinstance(integerA, int): raise TypeError("...
frank's user avatar
  • 21
0 votes
1 answer
413 views

When I run my app from cmd, I'm able to call the api very quickly. But when it is hosted in IIS (fastcgi - wfastcgi.py) the run takes forever and I"m unable to get any return from the api. import ...
Tan Eugene's user avatar
0 votes
0 answers
327 views

/opt/libreoffice6.3/program/oosplash: error while loading shared libraries: libuno_sal.so.3: cannot open shared object file: No such file or directory i'm using centos7
Raja Manikam's user avatar
1 vote
1 answer
247 views

I am trying to convert pdf to docx using soffice. It converts it into .docx but it gives textboxes which I am unable to read using the docx api provided by python. Is there any better way to read the ...
Faizan E Mustafa Mustafa's user avatar
0 votes
1 answer
501 views

I have a .xlsx file with an image on header. When i try to convert to PDF via terminal using libreoffice it converts but the image doesn't appear on the generated PDF. Here is a screenshot of the ...
K_dev's user avatar
  • 347
4 votes
1 answer
11k views

i am trying to convert a doc to docx using the following command: soffice --headless --convert-to docx test.doc I am using centos7, and install everything from openoffice throught yum install ...
Luiza Rodrigues's user avatar
0 votes
0 answers
402 views

I use the command soffice --headless --convert-to pdf:writer_pdf_Export myfile to convert an .odt document to a pdf file, directly in a php file. In my document I have inserted comments, and after ...
WoAiNi's user avatar
  • 3
0 votes
2 answers
234 views

My first time posting - please go easy on me. I could not come up with a succinct title that summarizes this issue. I seem to have a codec problem. My django-based website calls a subprocess (...
Dan's user avatar
  • 15
0 votes
1 answer
811 views

I would like to write a python script to automate the conversion of libreoffice ott templates to normal odt files. if I go to the terminal (bash shell) and I type: soffice --headless --convert-to odt ...
Tom's user avatar
  • 3
6 votes
3 answers
15k views

I am having the most frustrating problem with libreoffice in Python when I run the following in terminal I have no problem at all, the pdf file is produced where I want it and life is dandy: cd /...
brucey31's user avatar
0 votes
1 answer
3k views

I wana use the pyoo.py package to control libreOffice via Python. There are good tutorials available. First step is to open a socket with following command. soffice --nologo --norestore --nodefault ...
Peter's user avatar
  • 1,689
1 vote
1 answer
1k views

If I save DOCX file with embeded fonts option in MS Word, i can open it in libreoffice writer gui in linux, and see it with the original fonts that are not installed on Linux. i can also export it to ...
moti irom's user avatar
0 votes
0 answers
376 views

When i had libreoffice3 it worked well , but when i unistall this version with this commande sudo apt-get remove libreoffice-core sudo apt-get remove --purge libreoffice-cor And i download ...
lomed's user avatar
  • 51
2 votes
0 answers
737 views

My code soffice --headless -convert-to pdf:impress_pdf_Export 1.html when I run this code command line it is not generating pdf file from the html Please help...
Goutam Pal's user avatar
  • 1,753
1 vote
1 answer
339 views

I'm trying to monitor the performance information for openoffice using the performance counter class in C#. I'm encountering a wierd issue where although my program can monitor other applications ...
Waffles's user avatar
  • 349