[GENERIC] Zend_Translate:
[zend.git] / documentation / manual / he / module_specs / Zend_Pdf-Save.xml
blob408bfe8ee475b5dabb65f13faaafb8d31c2dd0b7
1 <sect1 id="zend.pdf.save">
2     <title>שמירת שינויים בטפסי PDF</title>
3     <para>
4         ישנם שני מתודות אשר שומרות שינויים לטפסי PDF: <code>Zend_Pdf::save()</code> ו <code>Zend_Pdf::render()</code>.
5     </para>
7     <para>
8         <code>Zend_Pdf::save($filename, $updateOnly = false)</code> שומר את טופס ה PDF לקובץ.
9         אם $updateOnly מוגדר ל true, אז רק השינויים החדשים מצורפים לקובץ. אחרת הקובץ משוכתב מחדש.
10     </para>
12     <para>
13         <code>Zend_Pdf::render($newSegmentOnly = false)</code> מחזיר את הטופס PDF כסטרינג.
14         אם $newSegmentOnly מוגדר ל true, אז רק השינויים החדשים מוחזרים.
15     </para>
17     <example id="zend.pdf.save.example-1">
18         <title>שמירת קבצי PDF</title>
19         <programlisting role="php"><![CDATA[
20 ...
21 // Load the PDF document
22 $pdf = Zend_Pdf::load($fileName);
23 ...
24 // Update the PDF document
25 $pdf->save($fileName, true);
26 // Save document as a new file
27 $pdf->save($newFileName);
29 // Return the PDF document as a string
30 $pdfString = $pdf->render();
32 ...
33 ]]>
34         </programlisting>
35     </example>
37 </sect1>
38 <!--
39 vim:se ts=4 sw=4 et:
40 -->