{"id":802,"date":"2026-04-06T18:08:09","date_gmt":"2026-04-06T09:08:09","guid":{"rendered":"https:\/\/yukitakeda.com\/?p=802"},"modified":"2026-04-06T18:08:09","modified_gmt":"2026-04-06T09:08:09","slug":"how-to-convert-svg-to-png-jpg-using-google-apps-script-gas","status":"publish","type":"post","link":"https:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/","title":{"rendered":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)"},"content":{"rendered":"\n<p class=\"p1\">Have you ever tried to generate a dynamic chart or map in Google Apps Script as an SVG, only to realize you can\u2019t easily share it as an image?<\/p>\n\n\n\n<p class=\"p2\">Because GAS runs on Google&#8217;s servers, it doesn&#8217;t have a &#8220;screen&#8221; to render graphics. If you want to convert an SVG string into a PNG or JPG, you\u2019ll find that standard libraries are missing. But there is a workaround: The Browser Bridge.<\/p>\n\n\n\n<p class=\"p2\">By using HtmlService, we can temporarily pass the SVG to the user&#8217;s browser, use the HTML5 Canvas API to rasterize it, and send the image data back to Google Drive.<\/p>\n\n\n\n<p>This way, you can create or edit an existing SVG file using parameters in your Spreadsheet and export it as a raster image (PNG).<\/p>\n\n\n\n<p>It also allows you to automate importing pf SVG files into Google Slides without using external APIs such as CloudConvert (which you could use, but it&#8217;s not free for extensive use, and you also need to share your data to a third party).<\/p>\n\n\n\n<!--more-->\n\n\n\n<p class=\"p3\"><strong>The Architecture<\/strong><\/p>\n\n\n\n<p class=\"p4\">1. GAS (Server): Prepares the SVG string.<\/p>\n\n\n\n<p class=\"p5\">2. HTML (Client): Opens a hidden dialog, draws the SVG on a &lt;canvas&gt;.<\/p>\n\n\n\n<p class=\"p6\">3. Canvas (Client): Converts the drawing to a Base64 PNG string.<\/p>\n\n\n\n<p class=\"p7\">4. GAS (Server): Receives the Base64 data and saves it as a file.<\/p>\n\n\n\n<p class=\"p3\"><strong>Implementation<\/strong><\/p>\n\n\n\n<p class=\"p8\"><strong>1. Code.gs (Server-side)<\/strong><\/p>\n\n\n\n<p class=\"p9\">This script coordinates the data flow and handles the final file saving.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/**<br> * Main function to trigger the conversion<br> *\/<br>function startConversion() {<br>  const svgString = '&lt;svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"200\" height=\"200\"&gt;&lt;circle cx=\"100\" cy=\"100\" r=\"80\" fill=\"red\" \/&gt;&lt;\/svg&gt;';<br>  const fileName = \"converted_image.png\";<br>  <br>  const template = HtmlService.createTemplateFromFile('converter');<br>  template.svgData = svgString;<br>  template.fileName = fileName;<br>  <br>  const html = template.evaluate().setWidth(400).setHeight(300);<br>  SpreadsheetApp.getUi().showModalDialog(html, 'Converting SVG to PNG...');<br>}<br><br>\/**<br> * Saves the Base64 data received from the client<br> *\/<br>function saveImage(base64Data, fileName) {<br>  const decoded = Utilities.base64Decode(base64Data.split(',')[1]);<br>  const blob = Utilities.newBlob(decoded, 'image\/png', fileName);<br>  DriveApp.createFile(blob);<br>  return \"Success\";<br>}<\/pre>\n\n\n\n<p class=\"p1\"><strong>2. converter.html (Client-side)<\/strong><\/p>\n\n\n\n<p class=\"p2\">Create this file in the same project. It acts as the &#8220;Rendering Engine.&#8221;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;!DOCTYPE html&gt;<br>&lt;html&gt;<br>&lt;body&gt;<br>  &lt;canvas id=\"canvas\" style=\"display:none;\"&gt;&lt;\/canvas&gt;<br>  &lt;script&gt;<br>    window.onload = function() {<br>      \/\/ Data passed from GAS<br>      const svgString = `&lt;?!= svgData ?&gt;`; <br>      const fileName = `&lt;?!= fileName ?&gt;`;<br>      <br>      const canvas = document.getElementById('canvas');<br>      const ctx = canvas.getContext('2d');<br>      const img = new Image();<br><br>      \/\/ Important: Ensure the SVG has the correct namespace<br>      let blob = new Blob([svgString], {type: 'image\/svg+xml;charset=utf-8'});<br>      let url = URL.createObjectURL(blob);<br><br>      img.onload = function() {<br>        canvas.width = img.width || 1200; \/\/ Set high res<br>        canvas.height = img.height || 1200;<br>        ctx.fillStyle = \"white\"; \/\/ Optional: background color<br>        ctx.fillRect(0, 0, canvas.width, canvas.height);<br>        ctx.drawImage(img, 0, 0);<br>        <br>        const pngData = canvas.toDataURL('image\/png');<br>        google.script.run<br>          .withSuccessHandler(() =&gt; google.script.host.close())<br>          .saveImage(pngData, fileName);<br>      };<br>      img.src = url;<br>    };<br>  &lt;\/script&gt;<br>&lt;\/body&gt;<br>&lt;\/html&gt;<\/pre>\n\n\n\n<p class=\"p1\"><strong>Critical Pitfalls to Avoid<\/strong><\/p>\n\n\n\n<p class=\"p2\">\u2022 The xmlns Attribute: Your SVG must include xmlns=&#8221;http:\/\/www.w3.org\/2000\/svg&#8221;. Without this, the browser&#8217;s Image object will fail to load the string.<\/p>\n\n\n\n<p class=\"p3\">\u2022 Fonts: If you use Google Fonts, the browser needs a moment to load them. Use document.fonts.ready or document.fonts.load() before drawing to the canvas.<\/p>\n\n\n\n<p class=\"p3\">\u2022 Base64 Encoding: For complex SVGs with Japanese characters, use btoa(unescape(encodeURIComponent(svgString))) to ensure UTF-8 characters don&#8217;t break.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever tried to generate a dynamic chart or map in Google Apps Script as an SVG, only to realize you can\u2019t easily share it as an image? Because GAS runs on Google&#8217;s servers, it doesn&#8217;t have a &#8220;screen&#8221; to render graphics. If you want to convert an SVG string into a PNG or JPG, you\u2019ll find that standard libraries are missing. But there is a workaround: The Browser Bridge. By using HtmlService, we can temporarily pass the SVG to the user&#8217;s browser, use the HTML5 Canvas API to rasterize it, and send the image data back to Google Drive. This way, you can create or edit an existing &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080<span class=\"screen-reader-text\"> &#8220;How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)&#8221;<\/span><\/a><\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":"","_elementor_edit_mode":"","_elementor_template_type":"","_elementor_data":"","_elementor_page_settings":null},"categories":[20],"tags":[],"class_list":["post-802","post","type-post","status-publish","format-standard","hentry","category-web-"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155\" \/>\n<meta property=\"og:description\" content=\"Have you ever tried to generate a dynamic chart or map in Google Apps Script as an SVG, only to realize you can\u2019t easily share it as an image? Because GAS runs on Google&#8217;s servers, it doesn&#8217;t have a &#8220;screen&#8221; to render graphics. If you want to convert an SVG string into a PNG or JPG, you\u2019ll find that standard libraries are missing. But there is a workaround: The Browser Bridge. By using HtmlService, we can temporarily pass the SVG to the user&#8217;s browser, use the HTML5 Canvas API to rasterize it, and send the image data back to Google Drive. This way, you can create or edit an existing &hellip; \u7d9a\u304d\u3092\u8aad\u3080 &quot;How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\" \/>\n<meta property=\"og:site_name\" content=\"Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/yuki.the.whistler\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/yuki.the.whistler\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-06T09:08:09+00:00\" \/>\n<meta name=\"author\" content=\"Yuki\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@yukithewhistler\" \/>\n<meta name=\"twitter:site\" content=\"@yukithewhistler\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yuki\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\"},\"author\":{\"name\":\"Yuki\",\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a\"},\"headline\":\"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)\",\"datePublished\":\"2026-04-06T09:08:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\"},\"wordCount\":333,\"publisher\":{\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a\"},\"articleSection\":[\"Web\/\u30a6\u30a7\u30d6\u5236\u4f5c\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\",\"url\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\",\"name\":\"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155\",\"isPartOf\":{\"@id\":\"https:\/\/yukitakeda.com\/#website\"},\"datePublished\":\"2026-04-06T09:08:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/yukitakeda.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/yukitakeda.com\/#website\",\"url\":\"https:\/\/yukitakeda.com\/\",\"name\":\"Yuki Takeda\uff5cWorld Champion & Professional Whistler\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/yukitakeda.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a\",\"name\":\"Yuki\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/yukitakeda.com\/wp-content\/uploads\/2018\/04\/cropped-DSCF5641-for-blog-3-1.jpg\",\"contentUrl\":\"https:\/\/yukitakeda.com\/wp-content\/uploads\/2018\/04\/cropped-DSCF5641-for-blog-3-1.jpg\",\"width\":1000,\"height\":552,\"caption\":\"Yuki\"},\"logo\":{\"@id\":\"https:\/\/yukitakeda.com\/#\/schema\/person\/image\/\"},\"description\":\"Yuki Takeda is a world champion whistler, recording artist, and live performer known for his masterful control and expressive sound. Based in Japan, he offers international online whistling lessons for students of all levels, helping to spread the art of musical whistling worldwide. Through performances, recordings, and education, Yuki continues to inspire audiences and elevate the profile of whistling as a legitimate musical form.\",\"sameAs\":[\"https:\/\/yukitakeda.com\",\"https:\/\/facebook.com\/yuki.the.whistler\",\"https:\/\/instagram.com\/yuki.the.whistler\",\"https:\/\/x.com\/yukithewhistler\",\"https:\/\/www.youtube.com\/yukitakeda\",\"https:\/\/soundcloud.com\/siffleurdujapon\"],\"url\":\"https:\/\/yukitakeda.com\/ja\/author\/yt\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155","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:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/","og_locale":"ja_JP","og_type":"article","og_title":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155","og_description":"Have you ever tried to generate a dynamic chart or map in Google Apps Script as an SVG, only to realize you can\u2019t easily share it as an image? Because GAS runs on Google&#8217;s servers, it doesn&#8217;t have a &#8220;screen&#8221; to render graphics. If you want to convert an SVG string into a PNG or JPG, you\u2019ll find that standard libraries are missing. But there is a workaround: The Browser Bridge. By using HtmlService, we can temporarily pass the SVG to the user&#8217;s browser, use the HTML5 Canvas API to rasterize it, and send the image data back to Google Drive. This way, you can create or edit an existing &hellip; \u7d9a\u304d\u3092\u8aad\u3080 \"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)\"","og_url":"https:\/\/yukitakeda.com\/ja\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/","og_site_name":"Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155","article_publisher":"https:\/\/facebook.com\/yuki.the.whistler","article_author":"https:\/\/facebook.com\/yuki.the.whistler","article_published_time":"2026-04-06T09:08:09+00:00","author":"Yuki","twitter_card":"summary_large_image","twitter_creator":"@yukithewhistler","twitter_site":"@yukithewhistler","twitter_misc":{"\u57f7\u7b46\u8005":"Yuki","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#article","isPartOf":{"@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/"},"author":{"name":"Yuki","@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a"},"headline":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)","datePublished":"2026-04-06T09:08:09+00:00","mainEntityOfPage":{"@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/"},"wordCount":333,"publisher":{"@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a"},"articleSection":["Web\/\u30a6\u30a7\u30d6\u5236\u4f5c"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/","url":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/","name":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS) - Professional Whistler Yuki Takeda \u53e3\u7b1b\u594f\u8005 \u6b66\u7530 \u88d5\u7155","isPartOf":{"@id":"https:\/\/yukitakeda.com\/#website"},"datePublished":"2026-04-06T09:08:09+00:00","breadcrumb":{"@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/yukitakeda.com\/2026\/04\/06\/how-to-convert-svg-to-png-jpg-using-google-apps-script-gas\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/yukitakeda.com\/"},{"@type":"ListItem","position":2,"name":"How to Convert SVG to PNG\/JPG using Google Apps Script (GAS)"}]},{"@type":"WebSite","@id":"https:\/\/yukitakeda.com\/#website","url":"https:\/\/yukitakeda.com\/","name":"Yuki Takeda\uff5cWorld Champion & Professional Whistler","description":"","publisher":{"@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/yukitakeda.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":["Person","Organization"],"@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/531fa543f1cd94d879d16fc50a2bb37a","name":"Yuki","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/image\/","url":"https:\/\/yukitakeda.com\/wp-content\/uploads\/2018\/04\/cropped-DSCF5641-for-blog-3-1.jpg","contentUrl":"https:\/\/yukitakeda.com\/wp-content\/uploads\/2018\/04\/cropped-DSCF5641-for-blog-3-1.jpg","width":1000,"height":552,"caption":"Yuki"},"logo":{"@id":"https:\/\/yukitakeda.com\/#\/schema\/person\/image\/"},"description":"Yuki Takeda is a world champion whistler, recording artist, and live performer known for his masterful control and expressive sound. Based in Japan, he offers international online whistling lessons for students of all levels, helping to spread the art of musical whistling worldwide. Through performances, recordings, and education, Yuki continues to inspire audiences and elevate the profile of whistling as a legitimate musical form.","sameAs":["https:\/\/yukitakeda.com","https:\/\/facebook.com\/yuki.the.whistler","https:\/\/instagram.com\/yuki.the.whistler","https:\/\/x.com\/yukithewhistler","https:\/\/www.youtube.com\/yukitakeda","https:\/\/soundcloud.com\/siffleurdujapon"],"url":"https:\/\/yukitakeda.com\/ja\/author\/yt\/"}]}},"_links":{"self":[{"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/posts\/802","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/comments?post=802"}],"version-history":[{"count":1,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/posts\/802\/revisions"}],"predecessor-version":[{"id":803,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/posts\/802\/revisions\/803"}],"wp:attachment":[{"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/media?parent=802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/categories?post=802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yukitakeda.com\/ja\/wp-json\/wp\/v2\/tags?post=802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}