<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[קידוד PDF]]></title><description><![CDATA[<p dir="auto">העליתי כאן<br />
דיון בנושאי מסמכים האם מישהוא יכול לתת הדרכה קצרה לקידוד מסמך PDF בקוד C#</p>
<p dir="auto">נ.ב. לדעתי העזרה הכי גדולה במקרים כאלו תהיה בדוגמת קוד שתסביר איך כותבים 'שלום עולם' במסמך PDF, ותו לא</p>
<p dir="auto"><em>פורסם במקור בפורום CODE613 ב14/08/2013 09:05 (+03:00)</em></p>
]]></description><link>https://tchumim.com/topic/152/קידוד-pdf</link><generator>RSS for Node</generator><lastBuildDate>Mon, 09 Mar 2026 12:04:25 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/152.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 Jan 2018 10:33:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to קידוד PDF on Mon, 29 Jan 2018 10:33:04 GMT]]></title><description><![CDATA[<p dir="auto">הנה קוד פשוט עם iTextSharp</p>
<pre><code>Imports iTextSharp.text.pdf
Imports iTextSharp.text
Imports System.IO

Public Class Form1

    Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
        Dim pdfDoc As New Document()
        Dim pdfWrite As PdfWriter = PdfWriter.GetInstance(pdfDoc,
                                                          New FileStream("tryme2.pdf", FileMode.Create))
        pdfDoc.Open()
        pdfDoc.Add(New Paragraph("Hello World"))
        pdfDoc.NewPage()
        pdfDoc.Add(New Paragraph("Hello World Again"))
        pdfDoc.Close()
    End Sub

End Class
</code></pre>
<p dir="auto">להורדת הקוד מקור של iTextSharp<br />
<a href="http://sourceforge.net/projects/itextsharp/" target="_blank" rel="noopener noreferrer nofollow ugc">http://sourceforge.net/projects/itextsharp/</a></p>
<p dir="auto"><em>פורסם במקור בפורום CODE613 ב14/08/2013 10:32 (+03:00)</em></p>
]]></description><link>https://tchumim.com/post/821</link><guid isPermaLink="true">https://tchumim.com/post/821</guid><dc:creator><![CDATA[רחמים]]></dc:creator><pubDate>Mon, 29 Jan 2018 10:33:04 GMT</pubDate></item></channel></rss>