Hello All, I have created a program in which I need to insert the company logo in the title (header) and also password protect the file. When I run the program will no password option the ODS PDF generates the pdf file without any errors or issue in the pdf file. When I set the password in the program. the pdf file is generated and there are no errors or warnings in the log, but the pdf file do not contain the logo and the pdf reader shows error there is something wrong with the file please contact the person who created it. This is the code which I'm using to create the header: (this is working fine) options nodate nonumber orientation=portrait papersize=A4 ; ods escapechar="^"; ods pdf file="&path\&fname" style=journal notoc startpage=no ; title j=l f='Times New Roman' height=10pt "Sponsor: &sponsor"; title2 j=l f='Times New Roman' height=10pt "Project No.: &proj " j=c "Version No.: &ver" j=r '^S={preimage="&logo"}'; if i add password options (below code) then this code will run without errors but no image is inserted in the pdf. options nodate nonumber orientation=portrait papersize=A4 pdfsecurity=high pdfpassword=(open="Awesomepassword"); Please help.
... View more