{"id":168,"date":"2007-01-20T01:44:00","date_gmt":"2007-01-20T01:44:00","guid":{"rendered":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/"},"modified":"2007-01-20T01:44:00","modified_gmt":"2007-01-20T01:44:00","slug":"welcome-apache-batik-svg","status":"publish","type":"post","link":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/","title":{"rendered":"Welcome, Apache Batik, SVG"},"content":{"rendered":"<p>Welcome to my tech tips blog!<br \/>I am a programmer and will mainly focus on new software information I learn in my day to day work. I will also post about any new, cool computer products I hear about and any other computer related information I find useful. Enjoy &#038; feel free to leave comments any time.<br \/><a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">Apache Batik<\/a>, a toolkit for drawing <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">svg <\/a>in java. It also does other miscellaneous svg related things such as generating an svg or converting an <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">svg<\/a> to jpeg, gif or png. It&#8217;s very cool. All free and open source, my favorite kind of software. Ok, so I&#8217;ve been trying to define a stroke in <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">svg<\/a>, a line in java &#038; use <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik<\/a> to draw the line using the defined stroke in a web browser. There&#8217;s very little online in terms of tutorials for <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik<\/a>. The <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik<\/a> site is about the only one for tutorials. Well, I managed to get it working. <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">SVG<\/a> is very cool! In the <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">svg<\/a> I created a cdata section, defining 3 strokes like this:<br \/>        .black12 {stroke:rgb(0,0,0);stroke-width:12}<br \/>        .yellow8 {stroke:yellow;stroke-width:8}<br \/>        .red2 {stroke:red;stroke-width:2}<br \/>Then add a group section:<br \/> g id=&#8221;street&#8221;><br \/>  use xlink:href=&#8221;#geometry_path&#8221; class=&#8221;black12&#8243; \/><br \/>  use xlink:href=&#8221;#geometry_path&#8221; class=&#8221;yellow8&#8243; \/><br \/>  use xlink:href=&#8221;#geometry_path&#8221; class=&#8221;red2&#8243; \/><br \/> \/g><\/p>\n<p>Note: < needs to be added to the front of each line. I'm having problems displaying the lines when I use <.\n\n In java, I create an applet in which I do the following:\n\n        String parser = XMLResourceDescriptor.getXMLParserClassName();<br \/>        SAXSVGDocumentFactory f = new SAXSVGDocumentFactory(parser);<br \/>        String uri = getCodeBase()+&#8221;svg\/stroke.svg&#8221;;<br \/>        SVGDocument doc = (SVGDocument)f.createDocument(uri);<\/p>\n<p>        \/\/ get the root element (the svg element)<br \/>        Element svgRoot = doc.getDocumentElement();<\/p>\n<p>        Element defs = doc.createElementNS(SVGDOMImplementation.SVG_NAMESPACE_URI, &#8220;defs&#8221;);<\/p>\n<p>        \/\/ create a line<br \/>        Element line = doc.createElementNS(SVGDOMImplementation.SVG_NAMESPACE_URI, &#8220;line&#8221;);<br \/>        line.setAttributeNS(null, &#8220;id&#8221;, &#8220;geometry_line&#8221;);<br \/>        line.setAttributeNS(null, &#8220;x1&#8221;, &#8220;10&#8221;);<br \/>        line.setAttributeNS(null, &#8220;y1&#8221;, &#8220;20&#8221;);<br \/>        line.setAttributeNS(null, &#8220;x2&#8221;, &#8220;150&#8221;);<br \/>        line.setAttributeNS(null, &#8220;y2&#8221;, &#8220;100&#8221;);        <\/p>\n<p>        defs.appendChild(line);<\/p>\n<p>        \/\/ attach the rectangle to the svg root element<br \/>        svgRoot.appendChild(defs);<\/p>\n<p>        svgCanvas = new JSVGCanvas();<br \/>        \/\/ Set size of svg canvas<br \/>        svgCanvas.setMySize(new Dimension(500, 500));<br \/>        \/\/ Set background color of svg canvas<br \/>        svgCanvas.setBackground(new Color(255, 255, 255)); <br \/>        svgCanvas.setDocumentState(JSVGCanvas.ALWAYS_DYNAMIC);<br \/>        svgCanvas.setDoubleBufferedRendering(true);<br \/>        svgCanvas.setSVGDocument(doc);<\/p>\n<p>One thing I learned is the stroke id names can&#8217;t contain an underscore. Example black12 can&#8217;t be black_12. Interesting.<br \/>Anyways, if you&#8217;re interested in learning <a href=\"http:\/\/www.w3.org\/Graphics\/SVG\/\" target=\"_new\" rel=\"noopener\">svg<\/a>, check out this book:<a href=\"http:\/\/www.amazon.com\/gp\/product\/1590590198?ie=UTF8&amp;tag=extcas-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1590590198\">SVG Programming: The Graphical Web<\/a><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" \/> by Kurt Cagle. I just ordered and it seems pretty useful. I&#8217;m also thinking about ordering this book: <a href=\"http:\/\/www.amazon.com\/gp\/product\/0975212877?ie=UTF8&amp;tag=extcas-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0975212877\">Java Drawing with Apache Batik: A Tutorial<\/a><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=0975212877\" width=\"1\" height=\"1\" border=\"0\" alt=\"\" style=\"border:none !important; margin:0px !important;\" \/> by Alexander Kolesnikov, Budi Kurniawan, Paul Deck. Other than the <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik site<\/a>, this is the only other <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik<\/a> tutorial I have found. Please let me know if you know of any other <a href=\"http:\/\/xmlgraphics.apache.org\/batik\/\" target=\"_new\" rel=\"noopener\">batik<\/a> books or sites.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to my tech tips blog!I am a programmer and will mainly focus on new software information I learn in my day to day work. I will also post about any new, cool computer products I hear about and any other computer related information I find useful. Enjoy &#038; feel free to leave comments any [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[234,316,336],"tags":[],"class_list":["post-168","post","type-post","status-publish","format-standard","hentry","category-apache-batik","category-svg","category-welcome"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Welcome, Apache Batik, SVG - Zofxare Blog Home<\/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:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Welcome, Apache Batik, SVG - Zofxare Blog Home\" \/>\n<meta property=\"og:description\" content=\"Welcome to my tech tips blog!I am a programmer and will mainly focus on new software information I learn in my day to day work. I will also post about any new, cool computer products I hear about and any other computer related information I find useful. Enjoy &#038; feel free to leave comments any [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/\" \/>\n<meta property=\"og:site_name\" content=\"Zofxare Blog Home\" \/>\n<meta property=\"article:published_time\" content=\"2007-01-20T01:44:00+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\" \/>\n<meta name=\"author\" content=\"zofxare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"zofxare\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/\"},\"author\":{\"name\":\"zofxare\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/#\\\/schema\\\/person\\\/094f5dde70100b9f8fbc63174a2a40ce\"},\"headline\":\"Welcome, Apache Batik, SVG\",\"datePublished\":\"2007-01-20T01:44:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/\"},\"wordCount\":242,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.assoc-amazon.com\\\/e\\\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\",\"articleSection\":[\"Apache Batik\",\"SVG\",\"Welcome\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/\",\"url\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/\",\"name\":\"Welcome, Apache Batik, SVG - Zofxare Blog Home\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.assoc-amazon.com\\\/e\\\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\",\"datePublished\":\"2007-01-20T01:44:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/#\\\/schema\\\/person\\\/094f5dde70100b9f8fbc63174a2a40ce\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.assoc-amazon.com\\\/e\\\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\",\"contentUrl\":\"http:\\\/\\\/www.assoc-amazon.com\\\/e\\\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/2007\\\/01\\\/20\\\/welcome-apache-batik-svg\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Welcome, Apache Batik, SVG\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/\",\"name\":\"Zofxare Blog Home\",\"description\":\"The Zofxare blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/#\\\/schema\\\/person\\\/094f5dde70100b9f8fbc63174a2a40ce\",\"name\":\"zofxare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=retro&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=retro&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=retro&r=g\",\"caption\":\"zofxare\"},\"url\":\"https:\\\/\\\/zofxare.com\\\/zofxare\\\/blog\\\/author\\\/zofxare\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Welcome, Apache Batik, SVG - Zofxare Blog Home","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:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/","og_locale":"en_US","og_type":"article","og_title":"Welcome, Apache Batik, SVG - Zofxare Blog Home","og_description":"Welcome to my tech tips blog!I am a programmer and will mainly focus on new software information I learn in my day to day work. I will also post about any new, cool computer products I hear about and any other computer related information I find useful. Enjoy &#038; feel free to leave comments any [&hellip;]","og_url":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/","og_site_name":"Zofxare Blog Home","article_published_time":"2007-01-20T01:44:00+00:00","og_image":[{"url":"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198","type":"","width":"","height":""}],"author":"zofxare","twitter_card":"summary_large_image","twitter_misc":{"Written by":"zofxare","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#article","isPartOf":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/"},"author":{"name":"zofxare","@id":"https:\/\/zofxare.com\/zofxare\/blog\/#\/schema\/person\/094f5dde70100b9f8fbc63174a2a40ce"},"headline":"Welcome, Apache Batik, SVG","datePublished":"2007-01-20T01:44:00+00:00","mainEntityOfPage":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/"},"wordCount":242,"commentCount":0,"image":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#primaryimage"},"thumbnailUrl":"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198","articleSection":["Apache Batik","SVG","Welcome"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/","url":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/","name":"Welcome, Apache Batik, SVG - Zofxare Blog Home","isPartOf":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#primaryimage"},"image":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#primaryimage"},"thumbnailUrl":"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198","datePublished":"2007-01-20T01:44:00+00:00","author":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/#\/schema\/person\/094f5dde70100b9f8fbc63174a2a40ce"},"breadcrumb":{"@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#primaryimage","url":"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198","contentUrl":"http:\/\/www.assoc-amazon.com\/e\/ir?t=extcas-20&amp;l=as2&amp;o=1&amp;a=1590590198"},{"@type":"BreadcrumbList","@id":"https:\/\/zofxare.com\/zofxare\/blog\/2007\/01\/20\/welcome-apache-batik-svg\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zofxare.com\/zofxare\/blog\/"},{"@type":"ListItem","position":2,"name":"Welcome, Apache Batik, SVG"}]},{"@type":"WebSite","@id":"https:\/\/zofxare.com\/zofxare\/blog\/#website","url":"https:\/\/zofxare.com\/zofxare\/blog\/","name":"Zofxare Blog Home","description":"The Zofxare blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zofxare.com\/zofxare\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/zofxare.com\/zofxare\/blog\/#\/schema\/person\/094f5dde70100b9f8fbc63174a2a40ce","name":"zofxare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=retro&r=g","caption":"zofxare"},"url":"https:\/\/zofxare.com\/zofxare\/blog\/author\/zofxare\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/posts\/168","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/comments?post=168"}],"version-history":[{"count":0,"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/posts\/168\/revisions"}],"wp:attachment":[{"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/media?parent=168"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/categories?post=168"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zofxare.com\/zofxare\/blog\/wp-json\/wp\/v2\/tags?post=168"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}