POVray is a program for creating graphics output (in our case of atomic structures) for publications.
You can export graphics output from our GUI, the JSmol viewer in this webpage or directly from Jmol. It doesn't actually require to have povray installed in the system to export in this format (unless you have checked the box that says "Run POV-Ray directly" in Jmol) .
POV-ray is run directly from the terminal, type 'povray' to see if it's installed or 'which povray' to see if it finds it, if your computer does not have povray installed see me about it (we're talking linux here of course).
When you export into povray format, it saves two files with the same name: one with the .pov extension, and one with the .pov.ini extension, both are actually text files. We normally have to change some settings in the .pov.ini file to change the output, and NEVER change anything in the .pov file.
Here's a sample of the content of a .pov.ini file (the file is called out1.pov.ini) :
; Created by: Jmol 13.0.15 2012-04-28 18:49
; Creation date: 2014-12-10, 13:52
; File created: /home/triad/folded1/out1.pov (1364404 bytes)
; Jmol state: (embedded in input file)
Input_File_Name=out1.pov
Output_to_File=true
Output_File_Type=N
Output_File_Name=out1.pov.png
Width=801
Height=692
Antialias=true
Antialias_Threshold=0.1
Display=true
Pause_When_Done=true
Warning_Level=5
Verbose=false
We need to modify and add some lines to make it more presentable:
Once you make the changes run POV-ray with the command povray out1.pov.ini
which will produce a out1.pov.png file.