{"id":793,"date":"2023-07-25T23:51:15","date_gmt":"2023-07-25T20:51:15","guid":{"rendered":"https:\/\/mryed.com\/?p=793"},"modified":"2023-07-25T23:52:57","modified_gmt":"2023-07-25T20:52:57","slug":"pdf-sayfalara-ayirma","status":"publish","type":"post","link":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/","title":{"rendered":"Asp.Net Separating Uploaded Pdf File into Pages"},"content":{"rendered":"<p>We want to split a pdf file into pages. However, this division will be according to the data on the page. So let's imagine that in a class of 30 students, each student has data on a page and these pages are created with the students' ID numbers. Can we split each page and make the file names the students' ID numbers?<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Separating a Pdf File into Pages<\/h2>\n\n\n\n<p>In the first case, we will extract a pdf file on the local disk from the file path and split it into pages. Then we will save the files to the local disk in the same way. For this we use the \"<strong>iTextSharp<\/strong>\" use the nuget package.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>        protected void Page_Load(object sender, EventArgs e)\n        {\n            if (!IsPostBack)\n            {\n\n                string inputFilePath = \"D:\\\\Yedek\\\\Class.pdf\";\n                string outputFolderPath = \"D:\\\\Yedek\\\\\";\n                SplitPdfByPage(inputFilePath, outputFolderPath);\n            }\n        }<\/code><\/pre>\n\n\n\n<p>When the page is loaded, we determine the file paths and run the relevant function. Here the file \"Class.pdf\" is a 30-page document and each page contains information about the students.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>        public void SplitPdfByPage(string inputFilePath, string outputFolderPath)\n        {\n            using (PdfReader reader = new PdfReader(inputFilePath))\n            {\n                int pageCount = reader.NumberOfPages;\n\n                for (int page = 1; page &lt;= pageCount; page++)\n                {\n                    string yeniDosyaAdi = \"\";\n                    Document document = new Document();\n                    _ = reader.GetPageN(page);\n                    ITextExtractionStrategy strategy = new SimpleTextExtractionStrategy();\n                    string metin = PdfTextExtractor.GetTextFromPage(reader, page, strategy);\n                    string desen = @\"\\b\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\b\";\n                    MatchCollection eslesmeler = Regex.Matches(metin, desen);\n                    foreach (Match eslesme in eslesmeler)\n                    {\n                        string tcKimlikNo = eslesme.Value.Replace(\" \", \"\");\n                        string ilk10Hane = tcKimlikNo.Substring(0, 10);\n                        int toplam = 0;\n                        foreach(char karakter in ilk10Hane)\n                        {\n                            if(Char.IsDigit(karakter))\n                            {\n                                toplam += Convert.ToInt32(karakter.ToString());\n                            }\n                        }\n                        char toplamSonKarekter = toplam.ToString()&#91;toplam.ToString().Length-1];\n                        char tcSonKarekter = tcKimlikNo&#91;tcKimlikNo.ToString().Length - 1];\n                        if (toplamSonKarekter == tcSonKarekter)\n                        {   \n                            yeniDosyaAdi = tcKimlikNo + \".pdf\";\n                            string outputFilePath = System.IO.Path.Combine(outputFolderPath, $\"{yeniDosyaAdi}\");\n                            PdfCopy pdfCopy = new PdfCopy(document, new FileStream(outputFilePath, FileMode.Create));\n                            document.Open();\n                            pdfCopy.AddPage(pdfCopy.GetImportedPage(reader, page));\n                            document.Close();\n                            pdfCopy.Close();\n                        }\n                    }\n                }\n            }\n        }<\/code><\/pre>\n\n\n\n<p>Let me briefly explain the code in the function. First, we take the source document and find out how many pages this document has. Then we switch between pages with a for loop. After logging in to the page, we do text elimination with \"Regex\". Here we extract 11 digit numbers. However, we will make a separate elimination here, considering that not every 11-digit number is an ID number. <em><a href=\"https:\/\/onedio.com\/haber\/tc-kimlik-numarasi-hakkinda-sizi-sasirtacak-5-gercek-538999\">Identity.<\/a><\/em> There are many ways to eliminate the ID number, but I chose the method of adding the first 10 digits to get the 11th digit. So I add the first ten digits of the ID number and take the ones digit of the result. If this number is equal to the 11th digit of the ID number, I say that this is an ID number. <\/p>\n\n\n\n<p>Now that we are sure of the ID number on the page, we need to take this page and save it. We give the file name the ID number found and add \".pdf\" at the end. We also save the file in the \"D:\/Yedek\" directory I specified when loading the page.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Separating Pdf Files and Uploading them to Firebase<\/h3>\n\n\n\n<p>Now let's change our code a little more. The user uploads a multi-page pdf and we separate the pages in this document by allocating an ID number.<\/p>\n\n\n\n<p>Let's add an upload area for uploading files.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;asp:FileUpload ID=\"pdfUpload\" runat=\"server\" \/&gt;<\/code><\/pre>\n\n\n\n<p>Let's do the separation operations on the uploaded document.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>if (pdfUpload.HasFile)\n{\n  foreach (HttpPostedFile file in pdfUpload.PostedFiles)\n  {\n    var contentType = file.ContentType;\n    var fileStream = file.InputStream;\n    var PdfURL = PdfYukle((DateTime.Now.Year + \"-\" + DateTime.Now.Month).ToString(), contentType, fileStream);\n    using (PdfReader reader = new PdfReader(PdfURL))\n    {\n       int pageCount = reader.NumberOfPages;\n       for (int page = 1; page &lt;= pageCount; page++)\n       {\n         Document document = new Document();\n         _ = reader.GetPageN(page);\n         ITextExtractionStrategy strategy = new SimpleTextExtractionStrategy();\n         string metin = PdfTextExtractor.GetTextFromPage(reader, page, strategy);\n         string desen = @\"\\b\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\s?\\d\\b\";\n         MatchCollection eslesmeler = Regex.Matches(metin, desen);\n         foreach (Match eslesme in eslesmeler)\n         {\n            string tcKimlikNo = eslesme.Value.Replace(\" \", \"\");\n            string ilk10Hane = tcKimlikNo.Substring(0, 10);\n            int toplam = 0;\n            foreach (char karakter in ilk10Hane)\n            {\n               if (Char.IsDigit(karakter))\n               {\n                  toplam += Convert.ToInt32(karakter.ToString());\n               }\n            }\n            char toplamSonKarekter = toplam.ToString()&#91;toplam.ToString().Length - 1];\n            char tcSonKarekter = tcKimlikNo&#91;tcKimlikNo.ToString().Length - 1];\n            if (toplamSonKarekter == tcSonKarekter)\n            {\n               string yeniDosyaAdi = tcKimlikNo + \".pdf\";\n               using (MemoryStream memoryStream = new MemoryStream())\n               {\n                  PdfCopy pdfCopy = new PdfCopy(document, memoryStream);\n                  document.Open();\n                  pdfCopy.AddPage(pdfCopy.GetImportedPage(reader, page));\n                  document.Close();\n                  pdfCopy.Close();\n                  byte&#91;] fileBytes = memoryStream.ToArray();\n                  var storageClient = StorageClient.Create();\n                  var bucketName = \"firebaseyolu.appspot.com\";\n                  var objectName = \"class\/\" + yeniDosyaAdi;\n                  storageClient.UploadObject(bucketName, objectName, \"application\/pdf\", new MemoryStream(fileBytes));\n              }               \n           }\n         }\n       } \n      }\n     }\n   }\n }<\/code><\/pre>\n\n\n\n<p>In the first stage, we took the pdf document that the user wants to upload and saved it to firebase with the PdfYukle function. The subsequent operations are very close to the first example. Again, we took the 11 digit numbers with regex and made sure that it was an ID number. We then saved this document in <em><a href=\"https:\/\/mryed.com\/en\/yazilim\/sharepoint-liste-tasima-uygulamasi\/\">firebase<\/a><\/em> storage. <\/p>\n\n\n\n<p>PdfYukle function;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>        private string PdfYukle(string fileName, string contentType, Stream fileStream)\n        {\n            string newFileName = fileName + \".pdf\";\n\n            var storage = StorageClient.Create();\n\n            var bucketName = \"firebaseyolu.appspot.com\";\n            var objectName = \"class\/\" + newFileName;\n\n\n            new Google.Apis.Storage.v1.Data.Object()\n            {\n                Bucket = bucketName,\n                Name = objectName,\n                ContentType = contentType,\n                Metadata = new Dictionary&lt;string, string&gt;()\n            {\n\n            { \"firebaseStorageDownloadTokens\", Guid.NewGuid().ToString() }\n            }\n            };\n   \n            var newObject = new Google.Apis.Storage.v1.Data.Object()\n            {\n                Bucket = bucketName,\n                Name = objectName,\n                ContentType = contentType,\n                Metadata = new Dictionary&lt;string, string&gt;()\n            {\n\n            { \"firebaseStorageDownloadTokens\", Guid.NewGuid().ToString() }\n            }\n            };\n\n            storage.UploadObject(bucketName, objectName, contentType, fileStream);\n\n            string url = $\"https:\/\/firebasestorage.googleapis.com\/v0\/b\/{bucketName}\/o\/{Uri.EscapeDataString(objectName)}?alt=media&amp;token={newObject.Metadata&#91;\"firebaseStorageDownloadTokens\"]}\";\n\n            return url;\n        }<\/code><\/pre>\n\n\n\n<p>This is the process of separating the <strong>pdf file<\/strong> into pages. See you in the next content.<\/p>","protected":false},"excerpt":{"rendered":"<p>We want to split a pdf file into pages. However, this division will be according to the data on the page. So let's imagine that in a class of 30 students, each student has data on a page and these pages are created with the students' ID numbers. Can we split each page and make the file names the students' ID numbers?<\/p>","protected":false},"author":1,"featured_media":796,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[55,23,11],"tags":[85],"class_list":["post-793","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c-kodlama","category-kodlama","category-yazilim","tag-itextsharp-kullanimi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre<\/title>\n<meta name=\"description\" content=\"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre\" \/>\n<meta property=\"og:description\" content=\"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mryed.com\/en\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/\" \/>\n<meta property=\"og:site_name\" content=\"Yunus Emre\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-25T20:51:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-25T20:52:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mr.YED\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mr.YED\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/\"},\"author\":{\"name\":\"Mr.YED\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"headline\":\"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma\",\"datePublished\":\"2023-07-25T20:51:15+00:00\",\"dateModified\":\"2023-07-25T20:52:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/\"},\"wordCount\":470,\"commentCount\":4,\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/pdf-dosyalarini-ayirma-kod.jpg\",\"keywords\":[\"itextsharp kullan\u0131m\u0131\"],\"articleSection\":[\"C#\",\"Kodlama\",\"Yaz\u0131l\u0131m\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/\",\"url\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/\",\"name\":\"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/pdf-dosyalarini-ayirma-kod.jpg\",\"datePublished\":\"2023-07-25T20:51:15+00:00\",\"dateModified\":\"2023-07-25T20:52:57+00:00\",\"description\":\"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/pdf-dosyalarini-ayirma-kod.jpg\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/pdf-dosyalarini-ayirma-kod.jpg\",\"width\":1920,\"height\":900,\"caption\":\"pdf-parcalara-bolme\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mryed.com\\\/yazilim\\\/kodlama\\\/pdf-sayfalara-ayirma\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\\\/\\\/mryed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mryed.com\\\/#website\",\"url\":\"https:\\\/\\\/mryed.com\\\/\",\"name\":\"Yunus Emre\",\"description\":\"Software Engineer\",\"publisher\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mryed.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/mryed.com\\\/#\\\/schema\\\/person\\\/4bb44b3409df8d51fc489343880ffea1\",\"name\":\"Mr.YED\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"url\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"contentUrl\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\",\"width\":360,\"height\":360,\"caption\":\"Mr.YED\"},\"logo\":{\"@id\":\"https:\\\/\\\/mryed.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/yunus-emre-demirel.png\"},\"description\":\"Mobil, web ve Microsoft tabanl\u0131 uygulamalar geli\u015ftiren bir yaz\u0131l\u0131m m\u00fchendisiyim. Kariyerim boyunca farkl\u0131 sekt\u00f6rlerde edindi\u011fim deneyimlerle \u00f6zellikle Power Platform, Power Apps, Power Automate ve kurumsal s\u00fcre\u00e7 otomasyonu konular\u0131nda uzmanla\u015ft\u0131m. Bu blogda yaz\u0131l\u0131m geli\u015ftirme, otomasyon ve Microsoft teknolojileri \u00fczerine edindi\u011fim tecr\u00fcbeleri payla\u015f\u0131yorum.\",\"sameAs\":[\"http:\\\/\\\/mryed.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/yunus-emre-demirel\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre","description":"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/","og_locale":"en_US","og_type":"article","og_title":"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre","og_description":"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.","og_url":"https:\/\/mryed.com\/en\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/","og_site_name":"Yunus Emre","article_published_time":"2023-07-25T20:51:15+00:00","article_modified_time":"2023-07-25T20:52:57+00:00","og_image":[{"width":1920,"height":900,"url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg","type":"image\/jpeg"}],"author":"Mr.YED","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mr.YED","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#article","isPartOf":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/"},"author":{"name":"Mr.YED","@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"headline":"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma","datePublished":"2023-07-25T20:51:15+00:00","dateModified":"2023-07-25T20:52:57+00:00","mainEntityOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/"},"wordCount":470,"commentCount":4,"publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg","keywords":["itextsharp kullan\u0131m\u0131"],"articleSection":["C#","Kodlama","Yaz\u0131l\u0131m"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/","url":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/","name":"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma - Yunus Emre","isPartOf":{"@id":"https:\/\/mryed.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#primaryimage"},"image":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#primaryimage"},"thumbnailUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg","datePublished":"2023-07-25T20:51:15+00:00","dateModified":"2023-07-25T20:52:57+00:00","description":"Pdf dosyas\u0131n\u0131 sayfalara ay\u0131rma i\u015flemi i\u00e7in i\u00e7erik haz\u0131rlad\u0131m. Ancak bu b\u00f6lme i\u015flemi sayfan\u0131n i\u00e7erisindeki verilere g\u00f6re olacak.","breadcrumb":{"@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#primaryimage","url":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2023\/07\/pdf-dosyalarini-ayirma-kod.jpg","width":1920,"height":900,"caption":"pdf-parcalara-bolme"},{"@type":"BreadcrumbList","@id":"https:\/\/mryed.com\/yazilim\/kodlama\/pdf-sayfalara-ayirma\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/mryed.com\/"},{"@type":"ListItem","position":2,"name":"Asp.Net Y\u00fcklenen Pdf Dosyas\u0131n\u0131 Sayfalara Ay\u0131rma"}]},{"@type":"WebSite","@id":"https:\/\/mryed.com\/#website","url":"https:\/\/mryed.com\/","name":"Yunus Emre","description":"Software Engineer","publisher":{"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mryed.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/mryed.com\/#\/schema\/person\/4bb44b3409df8d51fc489343880ffea1","name":"Mr.YED","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","url":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","contentUrl":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png","width":360,"height":360,"caption":"Mr.YED"},"logo":{"@id":"https:\/\/mryed.com\/wp-content\/uploads\/2021\/03\/yunus-emre-demirel.png"},"description":"I am a software engineer who develops mobile, web, and Microsoft-based applications. Throughout my career, I have gained experience in various industries and specialized in Power Platform, Power Apps, Power Automate, and enterprise process automation. In this blog, I share my experiences in software development, automation, and Microsoft technologies.","sameAs":["http:\/\/mryed.com","https:\/\/www.linkedin.com\/in\/yunus-emre-demirel\/"]}]}},"_links":{"self":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/793","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/comments?post=793"}],"version-history":[{"count":2,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/793\/revisions"}],"predecessor-version":[{"id":797,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/posts\/793\/revisions\/797"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media\/796"}],"wp:attachment":[{"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/media?parent=793"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/categories?post=793"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mryed.com\/en\/wp-json\/wp\/v2\/tags?post=793"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}