szamrud

Results 7 comments of szamrud

Hi, Here is the error, I'm getting. ![error](https://cloud.githubusercontent.com/assets/7841311/3587018/6dc2f710-0c35-11e4-88f4-a33d636d73ac.png) Thanks, Syed

I tried every option but it doesn't work for me. I'm using as_pdf3 open source to generate PDFs.

pl_fpdf working fine without image, But if you really need image on PDF than only option is as_pdf3. If you search for p_dir and replace the directory name to your...

For your test you can store in the blob column, for browser you can use as_pdf3.output CREATE TABLE "TEST_PDF" ( "PDF_FILE" BLOB ); begin as_pdf3.init; as_pdf3.write( 'jpg, gif and png...

Add this code to your as_pdf3 package spec and body. procedure output (pb_file blob); procedure output (pb_file blob) is lb_file blob; begin lb_file := pb_file; OWA_UTIL.mime_header('application/pdf', FALSE); HTP.p('Content-Length: ' ||...

For Browser... procedure proc_run_report is lb_blob blob; begin as_pdf3.init; as_pdf3.write( 'jpg, gif and png images are supported.' ); lb_blob := as_pdf3.get_pdf (); as_pdf3.output (lb_blob); end;

instead of Output() procedure use the below function it will return you the pdf. procedure helloworld is begin FPDF('P','cm','A4'); openpdf; AddPage(); SetFont('Arial','B',16); Cell(0,1.2,'Hello World',0,1,'C'); insert into test_pdf values (pl_fpdf.outputf ());...