creating pdf documents using pl/sql create pdf in pl/sql generate pdf in pl/sql
pdf by pl/sql pl/sql Oracle Sql PDF pl/sql pdf generate
tool develop oracle pl/sql download
creating html_db applications
spacer
plsql generate pdf
html_db spacer Home Examples
printemail html_db printed report

10. Set document properties

CREATE OR REPLACE procedure test10 is
-- Set document properties
l_blob blob;
l_filename varchar2(30) := '123.pdf';
begin
plpdf.init; -- initialize, without parameters means: page orientation: portrait, unit: mm, default page format: A4
plpdf.SetDocTitle('Document title'); -- set document title
plpdf.SetDocSubject('Document subject'); -- set document subject
plpdf.SetDocAuthor('Document author'); -- set document author
plpdf.SetDocKeywords('key1, key2, key3'); -- set document keywords
plpdf.SetDocCreator('Document creator'); -- set document creator
plpdf.NewPage; -- begin a new page, without parameters means: page orientation: default (portrait)
plpdf.SetPrintFont('Arial',null,12); -- set font attributes: family: Arial, style: regular, font size: 12
plpdf.PrintCell(50,10,'Hello World!'); -- print text: cell size:50*10
plpdf.SendDoc(l_blob); -- create content

-- print
/*
owa_util.mime_header('application/pdf',false);
htp.p('Content-Disposition: inline; filename="' || l_filename || '"');
htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
owa_util.http_header_close;  
wpg_docload.download_file(l_blob);
*/

-- or store
insert into STORE_BLOB (blob_file, created_date) values (l_blob, sysdate);
commit;
end;
/

Source: test10.prc

Result: test10.pdf

spacer
pl/sql pdf
mod_plsql pdf