{"id":3095,"date":"2016-02-09T01:20:29","date_gmt":"2016-02-09T01:20:29","guid":{"rendered":"http:\/\/www.garysieling.com\/blog\/?p=3095"},"modified":"2016-02-09T01:20:29","modified_gmt":"2016-02-09T01:20:29","slug":"extracting-images-from-pdfs-in-c-sharp","status":"publish","type":"post","link":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/","title":{"rendered":"Extracting images from PDFs in C#"},"content":{"rendered":"<p>TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my WordPress installation:<\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3102\" src=\"http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/02\/wordpress-tinymce.png\" alt=\"wordpress-tinymce\" width=\"815\" height=\"229\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-tinymce.png 815w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-tinymce-300x84.png 300w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-tinymce-768x216.png 768w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/p>\n<p>There are a lot of customization hooks, and because it&#8217;s used in WordPress, it gets a lot of maintenance. For instance, it supports pasting from Word pretty well. There is even a flag you can enable to allow people to paste in images (this base64 encodes them in the page).<\/p>\n<p>The toughest area to work on is adding a media library, since that is typically dependent on the backend services (i.e. you&#8217;d need a different implementation depending on whether you use PHP, C#, Javascript etc, and Postgres \/ MySQL \/ Mongo).<\/p>\n<p>WordPress lets you drag and drop images onto the page, and then they go into a paged list of images that you can search later.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3101\" src=\"http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/02\/wordpress-upload.png\" alt=\"wordpress-upload\" width=\"790\" height=\"543\" srcset=\"https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-upload.png 790w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-upload-300x206.png 300w, https:\/\/www.garysieling.com\/blog\/wp-content\/uploads\/2016\/02\/wordpress-upload-768x528.png 768w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" \/><\/p>\n<p>One thing that surprises me that more people don&#8217;t do is to let you upload PDFs and automatically extract the images, but as I&#8217;ve found out, this turns out to be a little more difficult than I&#8217;d anticipated.<\/p>\n<p>In .NET, there are a few options for PDF libraries, including PDFBox, Aspose, iTextSharp. I believe thatall three are originally Java libraries, which adds some complexity.<\/p>\n<p>PDFBox is an Apache library, so it is the &#8220;cheapest&#8221;, but only if you value your time low. In order to use PDFBox, you have to run the library through IKVM (or download a copy from someone who has). IKVM converts bytecode from Java to .NET, and adds a ton of libraries to replace the JDK. Unfortunately it&#8217;s a big pain to do interop, since you need to write wrapper classes for things like streams. Image processing depends on AWT, which didn&#8217;t work in the versions of PDFBox I found, and after a few hours of poking at this I abandoned this approach.<\/p>\n<p>iTextSharp is licensed under a license that lets you look at it, but if you want to use this without releasing your source you&#8217;d need to purchase a license. At one point it was licensed more openly. Someone ported this to C# under the old license and added it to Nuget, which is an option for testing. At this point this is probably missing a lot of bug fixes (you can certainly find many Stackoverflow posts where iText reps say this).<\/p>\n<p>There are a lot of examples of how to do this already written, so for completeness, this is a good one to start from:<\/p>\n<p><script src=\"https:\/\/gist.github.com\/7shi\/805326.js\"><\/script><\/p>\n<p>The biggest problem I&#8217;ve had with this is that it appears that images in PDFs may include transparency, and this information can get lost in translation on the way out.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my WordPress installation: &nbsp; There are a lot of customization hooks, and because it&#8217;s used in WordPress, it gets a lot of maintenance. For instance, it supports pasting from Word &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Extracting images from PDFs in C#&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[22],"tags":[96,299,419],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it&#039;s used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"gary\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Gary Sieling - Software Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Extracting images from PDFs in C# - Gary Sieling\" \/>\n\t\t<meta property=\"og:description\" content=\"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it&#039;s used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-02-09T01:20:29+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-02-09T01:20:29+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Extracting images from PDFs in C# - Gary Sieling\" \/>\n\t\t<meta name=\"twitter:description\" content=\"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it&#039;s used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#blogposting\",\"name\":\"Extracting images from PDFs in C# - Gary Sieling\",\"headline\":\"Extracting images from PDFs in C#\",\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/172.104.26.128\\\/wp-content\\\/uploads\\\/2016\\\/02\\\/wordpress-tinymce.png\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#articleImage\"},\"datePublished\":\"2016-02-09T01:20:29+00:00\",\"dateModified\":\"2016-02-09T01:20:29+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#webpage\"},\"articleSection\":\"Proof of Concepts, c#, itext, pdfbox\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/proof-of-concepts\\\/#listItem\",\"name\":\"Proof of Concepts\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/proof-of-concepts\\\/#listItem\",\"position\":2,\"name\":\"Proof of Concepts\",\"item\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/proof-of-concepts\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#listItem\",\"name\":\"Extracting images from PDFs in C#\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#listItem\",\"position\":3,\"name\":\"Extracting images from PDFs in C#\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/category\\\/proof-of-concepts\\\/#listItem\",\"name\":\"Proof of Concepts\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/\",\"name\":\"gary\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"gary\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#webpage\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/\",\"name\":\"Extracting images from PDFs in C# - Gary Sieling\",\"description\":\"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it's used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/extracting-images-from-pdfs-in-c-sharp\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/author\\\/gary\\\/#author\"},\"datePublished\":\"2016-02-09T01:20:29+00:00\",\"dateModified\":\"2016-02-09T01:20:29+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/\",\"name\":\"Gary Sieling\",\"description\":\"Software Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.garysieling.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Extracting images from PDFs in C# - Gary Sieling","description":"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it's used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word","canonical_url":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#blogposting","name":"Extracting images from PDFs in C# - Gary Sieling","headline":"Extracting images from PDFs in C#","author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/172.104.26.128\/wp-content\/uploads\/2016\/02\/wordpress-tinymce.png","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#articleImage"},"datePublished":"2016-02-09T01:20:29+00:00","dateModified":"2016-02-09T01:20:29+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#webpage"},"isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#webpage"},"articleSection":"Proof of Concepts, c#, itext, pdfbox"},{"@type":"BreadcrumbList","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.garysieling.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/#listItem","name":"Proof of Concepts"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/#listItem","position":2,"name":"Proof of Concepts","item":"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#listItem","name":"Extracting images from PDFs in C#"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#listItem","position":3,"name":"Extracting images from PDFs in C#","previousItem":{"@type":"ListItem","@id":"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/#listItem","name":"Proof of Concepts"}}]},{"@type":"Organization","@id":"https:\/\/www.garysieling.com\/blog\/#organization","name":"Gary Sieling","description":"Software Engineer","url":"https:\/\/www.garysieling.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author","url":"https:\/\/www.garysieling.com\/blog\/author\/gary\/","name":"gary","image":{"@type":"ImageObject","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/0be925276d848ffe98a6a9dc8cf33e67?s=96&d=identicon&r=g","width":96,"height":96,"caption":"gary"}},{"@type":"WebPage","@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#webpage","url":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/","name":"Extracting images from PDFs in C# - Gary Sieling","description":"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it's used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.garysieling.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/#breadcrumblist"},"author":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"creator":{"@id":"https:\/\/www.garysieling.com\/blog\/author\/gary\/#author"},"datePublished":"2016-02-09T01:20:29+00:00","dateModified":"2016-02-09T01:20:29+00:00"},{"@type":"WebSite","@id":"https:\/\/www.garysieling.com\/blog\/#website","url":"https:\/\/www.garysieling.com\/blog\/","name":"Gary Sieling","description":"Software Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.garysieling.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Gary Sieling - Software Engineer","og:type":"article","og:title":"Extracting images from PDFs in C# - Gary Sieling","og:description":"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it's used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word","og:url":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/","article:published_time":"2016-02-09T01:20:29+00:00","article:modified_time":"2016-02-09T01:20:29+00:00","twitter:card":"summary_large_image","twitter:title":"Extracting images from PDFs in C# - Gary Sieling","twitter:description":"TinyMCE is a Javascript rich-text editor that allows for a lot of extensibility. For example, this is a screenshot of what it looks like in my Wordpress installation: There are a lot of customization hooks, and because it's used in Wordpress, it gets a lot of maintenance. For instance, it supports pasting from Word"},"aioseo_meta_data":{"post_id":"3095","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2023-02-04 16:36:31","updated":"2026-07-06 01:26:32","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/\" title=\"Proof of Concepts\">Proof of Concepts<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tExtracting images from PDFs in C#\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.garysieling.com\/blog"},{"label":"Proof of Concepts","link":"https:\/\/www.garysieling.com\/blog\/category\/proof-of-concepts\/"},{"label":"Extracting images from PDFs in C#","link":"https:\/\/www.garysieling.com\/blog\/extracting-images-from-pdfs-in-c-sharp\/"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/3095"}],"collection":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/comments?post=3095"}],"version-history":[{"count":0,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/posts\/3095\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/media?parent=3095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/categories?post=3095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.garysieling.com\/blog\/wp-json\/wp\/v2\/tags?post=3095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}