Jump to content

ravishtiwari

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ravishtiwari's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I got my problem solved here : http://sourceforge.net/projects/tcpdf/forums/forum/435311/topic/4605174
  2. well, seriously speaking there is no full proof solution other than using encryption i.e ionCube etc. You can Obfuscate, but, this too, is will only inconvenience your legitimate, law-abiding and noble customers , while the people who would would rip you off are not your target paying customers anyway. there is a interesting post thread at : http://stackoverflow.com/questions/336057/best-solution-to-protect-php-code-without-encryption I hope that will help...
  3. I am stuck in a very complex situation. I am working on a PHP Web apps for Greeting card. For this, I am using some Linux tools and TCPDF and FPDI. Let me tell you how it all works: there is 4 page greeting card template PDF file. this is custom size 5x7 inches 300dpi PDF file. I have added custom size in TCPDF as well case 'STANDARD_CARD' : {$pf = array(1500.00,2100.00);break;} what i do is, i use: pdftk templateX.pdf burst output page_%2d.pdf to separate each page of temple. now I use : $pdf = new FPDI($cardDetails['ORIENTATION'],"mm",$cardDetails['SIZE']); $size = $pdf->getPageSizeFromFormat($cardDetails['SIZE']); //set source file for $pdf->setSourceFile($pdfFile); $templateIndex = $pdf->importPage(1); $pdf->AddPage($cardDetails['ORIENTATION'],$cardDetails['SIZE']); $pdf->useTemplate($templateIndex,0,0); other things like, writing message printing images. and at the end save the file using: $pdf->output("file_name.pdf","F"); original PDF file: (5x7 inches) http://www.mediafire.com/?bdinz9tqfemj0ft now the output I am getting is not 5x7 pdf it is a 29 x 20 inches file and that destroying my calculation and PDF as well. Please tell me what I am doing wrong... [attachment deleted by admin]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.