1

I'm using Ubuntu 14.04 x64 Desktop as OS. Trying to prepare a slideshow, when adding .eps image drawings to a slide there is no problem at all. But when i hit F5 to start slide show, slide that includes .eps image does not shown in output. Nothing just an empty screen appears. Althoug i have an external monitor, current slide does not shows .eps imported image but next slide area shows it.

Also tried to with unchecking Tools > Options > LibreOffice > View > "Use hardware acceleration".

Nothing changed.

Here is a screen shot of my outputs. On the right is presentation output, on the left is presentation helper screen.

http://oi57.tinypic.com/2rp2qa0.jpg

Both Slides included .eps image

akikara
  • 807

2 Answers2

0

If you have Imagemagick installed try to convert the eps file in another format ( e.g. png).

   convert mypic.eps mypic.png 

If the problem is related to internal command of the eps file you should overcome it.

If you need high definition try

  convert -density 600 mypic.eps -resize 1024x1024 mypic.png

Change value for density in 150 300 600, or size (instead of 1024x1024) as needed

Hastur
  • 4,160
  • 2
  • 32
  • 42
0

I had the same problem. Seems to be a problem with the (actual) version of LibreOffice in Ubuntu 14.04. I solved it updating LibreOffice to Versión: 4.3.0.4 using the code:

sudo add-apt-repository ppa:libreoffice/ppa
sudo apt-get update
sudo apt-get install libreoffice libreoffice-kde

according to this.

Luis
  • 1