{"id":1946,"date":"2023-02-15T11:26:50","date_gmt":"2023-02-15T11:26:50","guid":{"rendered":"https:\/\/www.tools.keywordfinder.us\/?page_id=638"},"modified":"2023-05-24T08:55:26","modified_gmt":"2023-05-24T08:55:26","slug":"image-to-sketch","status":"publish","type":"page","link":"https:\/\/tools.billionsideas.com\/de\/image-to-sketch\/","title":{"rendered":"Image To Sketch"},"content":{"rendered":"<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column has-base-3-background-color has-background is-layout-flow wp-block-column-is-layout-flow\">\n<section><h1>Image To Sketch<\/h1>\n<div class=\"container\">\n    <div class=\"form-group\">\n      <label for=\"\" class=\"d-block\">Select Image<\/label>\n      <input type=\"file\" name=\"\" id=\"file\">\n    <\/div>\n    <div class=\"form-group\">\n      <label for=\"\" class=\"d-block\"><b>Sketch Sharpness<\/b><\/label>\n      <input type=\"number\" class=\"p-2\" name=\"\" value=\"\" id=\"sketch-sharpness\" placeholder=\"5\" style=\"width: 64px;\">\n    <\/div><br>\n    <div class=\"form-group\">\n      <input type=\"button\" class=\"btn btn-lg btn-success\" value=\"Convert\" name=\"\" id=\"convert\"><br><br>\n    <\/div>\n  <\/div>\n  <div class=\"row mt-5\">\n    <div class=\"col-sm-4\">\n      \n      <center><div id=\"stg-1\"><\/div>     \n    <\/center><\/div>\n    <center><div class=\"col-sm-4\">\n      \n      <div id=\"stg-2\"><\/div>\n    \n    <\/div><\/center><center><br>\n    <div class=\"col-sm-4\">\n      <h2>Sketch Image<\/h2>\n      <div id=\"sketch-img\"><\/div>\n      <\/div><\/center>\n    <\/div>\n  \n<br>\n<p>Right click on image to save the image<\/p><br>\n\n<\/section>\n\n<script>\nwindow.addEventListener('DOMContentLoaded', (event) => {\n  const filter = function(img, filter) {\n    let canvas = document.createElement('canvas');\n    canvas.width = img.width;\n    canvas.height = img.height;\n    let ctx = canvas.getContext('2d');\n    ctx.filter = filter;\n    ctx.drawImage(img, 0, 0, img.width, img.height);\n    return canvas;\n  }\n\n  const merge = function(front, overlay) {\n    let canvas = document.createElement('canvas');\n    canvas.width = front.width;\n    canvas.height = front.height;\n    canvas.__skipFilterPatch = true;\n    let ctx = canvas.getContext('2d');\n    ctx.drawImage(front, 0, 0, canvas.width, canvas.height);\n    ctx.globalCompositeOperation = 'color-dodge';\n    ctx.drawImage(overlay, 0, 0, canvas.width, canvas.height);\n    let img = document.createElement('img');\n    img.src = canvas.toDataURL();\n    return img;\n  }\n\n  document.getElementById('convert').addEventListener('click', function() {\n    let file = document.getElementById('file').files;\n    let sharpness = document.getElementById('sketch-sharpness').value;\n    let stg1 = document.getElementById('stg-1');\n    let stg2 = document.getElementById('stg-2');\n    let sktch = document.getElementById('sketch-img');\n\n    let reader = new FileReader();\n    reader.readAsDataURL(file[0]);\n    reader.onload = (event) => {\n      let img = document.createElement('img');\n      img.src = event.target.result;\n      img.onload = () => {\n        const bnwImg = filter(img, 'grayscale(100%)');\n        const blurImg = filter(img, `grayscale(100%) invert(100%) blur(${sharpness}px)`);\n        const sketchImg = merge(bnwImg, blurImg);\n\n        let stg1Img = stg1.querySelector('img');\n        let stg2Img = stg2.querySelector('img');\n        let sktchImg = stg2.querySelector('img');\n\n        if(stg1Img !== null && stg2Img !== null && sktchImg !== null) {\n          stg1Img.remove();\n          stg2Img.remove();\n          sktchImg.remove()\n        }\n\n        stg1.append(bnwImg);\n        stg2.append(blurImg);\n        sktch.append(sketchImg)\n      }   \n    }\n  });\n});\n<\/script>\n\n<style>\n\nsection{text-align:center}\n\n\/* Button Styles *\/\nbutton, .button, #button, btn, .btn, #btn, downloadlink,  #download-button, #button-copy, button-copy, copy-button, #copy-button, #copy, copy, #download-html-button{\n  display: inline-block;\n  padding: 12px 24px;\n  font-size: 16px;\n  font-weight: 500;\n  color: #ffffff;\n  text-transform: uppercase;\n  text-decoration: none;\n  text-align: center;\n  border-radius: 30px;\n  background-image: linear-gradient(to right, #0088FF, #0088FF);\n  border: 3px solid #fff;\n  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);\n  transition: all 0.3s ease;\n  margin:0 auto;\n  margin-top:11px;\n  margin-bottom:11px;\n  text-shadow: 2px 2px 4px #333;\n}\n\n\/* Button Hover State *\/\nbutton:hover {\n  background-image: linear-gradient(to right, #FF1493, #FF1493);\n  border: 3px solid #ffffff;\n  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);\n}\n\n -input{\n  width: 25%;\n  height: 100%;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ninput[type=file]::file-selector-button {\n  display: inline-block;\n  padding: 1.0rem 1rem;\n  font-size: 1.125rem;\n  font-weight: bold;\n  color: #fff;\n  text-align: center;\n  text-transform: uppercase;\n  background-color: #0088FF;\n  border-radius: 0rem;\n  cursor: pointer;\n  transition: background-color 0.2s ease-in-out;\n  border: 0px solid #fff;\n  width:100%;\n  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);\n}\n\ninput[type=file]::file-selector-button:hover {\n  background-color: #5b52d6;\n}\n\ninput[type=file]::file-selector-button:active {\n  background-color: #4a41ad;\n}\n\ninput[type=file]::file-selector-button:focus {\n  outline: none;\n  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #6c63ff;\n}\n\ninput[type=file]::file-selector-button::before {\n  content: \"Select File\";\n}\n\ninput[type=file]::file-selector-button::before,\ninput[type=file]::file-selector-button::before {\n  content: \"\\2193 Browse Files\";\n}\n\n\ninput[type=\"file\"] {\n  display: yes;\n}\ninput[type=\"text\"], input[type=\"url\"] {\n  width: 80%;\n  height: 50px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\ninput[type=\"number\"], select {\n  width: 30%;\n  height: 50px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ntextarea {\n  width: 100%;\n  height: 170px;\n  padding: 10px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n}\n\ntextarea:hover {\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ntextarea:focus {\n  outline: none;\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ncanvas, #image-container, .img, #img, image, .image, #image, #convertedImage, #preview-image {\n  border: 5px solid;\n  border-image: linear-gradient(to bottom, #007bff, #00f260);\n  border-image-slice: 1;\n  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);\n  margin-top:10px;margin-bottom:10px;\n  width:90%;\n  margin:0 auto;padding:15px;\n\n}\n\n#image-container img {\n  max-width: 100%;\n  }\n\ncode, pre, .result, output, #output, .output {\n  font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n  font-size: 0.9em;\n  color: #333;\n  background-color: #f9f9f9;\n  padding: 0.2em 0.4em;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  white-space: pre-wrap;\n  margin-top:10px;margin-bottom:10px;\n  margin:0 auto;\n  width:100%;\n  padding:15px;\n\n}\n\n\ninput[type=\"range\"] {\n  -webkit-appearance: none;\n  width: 80%;\n  background: transparent;\n  height: 10px;\n  border-radius: 5px;\n  outline: none;\n  padding: 0;\n  margin: 0;\n  box-shadow: inset 0 0 5px #333;\n  transition: box-shadow 0.2s;\n  margin-top:10px;\n\n}\n\ninput[type=\"range\"]:focus {\n  box-shadow: inset 0 0 5px #888;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb {\n  -webkit-appearance: none;\n  height: 20px;\n  width: 20px;\n  border-radius: 50%;\n  background: #4CAF50;\n  cursor: pointer;\n  transition: background 0.2s;\n  margin-top:-5px;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb:hover {\n  background: #3e8e41;\n}\n\ninput[type=\"range\"]::-webkit-slider-runnable-track {\n  height: 10px;\n  background: #ddd;\n  border-radius: 5px;\n  border: none;\n}\ninput[type=\"checkbox\"] {\n  appearance: none;\n  width: 45px;\n  height: 25px;\n  background: transparent;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;  border-radius: 5px;\n  margin: 10px;\n  outline: none;\n  cursor: pointer;\n  position: relative;\n}\n\ninput[type=\"checkbox\"]:before {\n  content: \"\";\n  width: 15px;\n  height: 15px;\n  background: #D209A4;\n  border-radius: 100px;\n  position: absolute;\n  left: 2px;\n  \n  top: 3px;\n  transition: all 0.2s;\n}\n\ninput[type=\"checkbox\"]:checked:before {\n  transform: translateX(20px);\n}\n\ninput[type=\"checkbox\"]:focus {\n  border: 2px solid #888;\n}\ninput[type=\"radio\"] {\n  appearance: none;\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  border: 2px solid #333;\n  margin-right: 10px;\n  outline: none;\n  position: relative;\n  cursor: pointer;\n}\n\ninput[type=\"radio\"]:after {\n  content: \"\";\n  width: 10px;\n  height: 10px;\n  border-radius: 50%;\n  background: #333;\n  position: absolute;\n  top: 5px;\n  left: 5px;\n  opacity: 0;\n  transition: all 0.2s;\n}\n\ninput[type=\"radio\"]:checked:after {\n  opacity: 1;\n}\n\ninput[type=\"radio\"]:focus {\n  border-color: #888;\n}\n\n\ninput[type=\"radio\"] {\n  display: inline-block;\n  margin-right: 10px;\n  vertical-align: middle;\n}\n\nlabel {\n  display: block; \/* makes each label appear on a new line *\/\n  font-size: 16px;\n  font-weight: bold;\n  margin-bottom: 5px; \/* adds a small gap below each label *\/\n  color:#55555e;\n  margin-top:11px;margin-bottom:11px;\n}\n\ninput[type=\"color\"]{width:17.2%;}\n.form-control {\n    display: block;\n    margin:0 auto;\n    width: 70%;\n    padding: 0.375rem 0.75rem;\n    font-size: 1rem;\n    font-weight: 400;\n    line-height: 1.5;\n    color: #212529;\n    background-color: #fff;\n    background-clip: padding-box;\n    border: 1px solid #ced4da;\n    -webkit-appearance: none;\n    -moz-appearance: none;\n    appearance: none;\n    border-radius: 0.25rem;\n    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;\n}\nsection{\n         margin-top:60px;\n        width: 100%;\n        max-width: 970px;\n        background-color: #fff;\n        border: 1px solid #ddd;\n        padding: 25px;\n      }\n<\/style>\n<\/div>\n<\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-online-tool.png\" alt=\"image to sketch online tool\" class=\"wp-image-3643\" srcset=\"https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-online-tool.png 1024w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-online-tool-300x150.png 300w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-online-tool-768x384.png 768w, https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-online-tool-18x9.png 18w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The Image to Sketch Converter is a powerful tool that utilizes advanced algorithms to analyze and interpret the content of an image, replicating it in the form of a sketch. This technology enables artists, designers, and even hobbyists to quickly and easily convert their digital images into beautiful sketches, adding an artistic touch to their creations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is an Image to Sketch Converter?<\/strong><\/h2>\n\n\n\n<p>An Image to Sketch Converter is a software or online tool that automates the process of transforming digital images into sketches. It utilizes complex algorithms to detect edges, contours, and shading in the original image and replicates them in a sketch format. This technology mimics the techniques used by professional artists, allowing users to achieve stunning results without requiring any manual drawing skills.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How Does an Image to Sketch Converter Work?<\/strong><\/h2>\n\n\n\n<p>Image to Sketch Converters employs a variety of techniques and algorithms to analyze the content of an image and generate a corresponding sketch. These algorithms typically identify edges and boundaries within the image, capturing the primary elements and features. By mapping these elements and applying shading techniques, the converter can create a realistic-looking sketch.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Choose an image: Select the photograph you wish to convert into a sketch. It could be a portrait, landscape, or any image that inspires you.<\/li>\n\n\n\n<li>Upload the image: Use the image to sketch converter tool to upload your chosen image. Ensure that the image meets the required file format and resolution criteria.<\/li>\n\n\n\n<li>Adjust settings: Customize the sketching parameters to achieve your desired result. Experiment with stroke thickness, shading intensity, and other settings to add your personal touch.<\/li>\n\n\n\n<li>Initiate conversion: Click on the &#8220;Convert&#8221; button to start the conversion process. Depending on the complexity of the image and the converter&#8217;s processing power, the conversion time may vary.<\/li>\n\n\n\n<li>Preview and refine: Once the conversion is complete, preview the sketch. If desired, make further adjustments to the settings or apply additional filters to enhance the sketch.<\/li>\n\n\n\n<li>Save and share: When you&#8217;re satisfied with the final sketch, save it to your device and share it with others. You now have a unique piece of art that began as a simple photograph.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits of Using an Image to Sketch Converter<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Saving Time and Effort<\/h3>\n\n\n\n<p>Traditionally, creating a sketch from an image would require significant time, effort, and artistic skills. With an Image to Sketch Converter, the process is automated, saving artists and designers valuable time. It eliminates the need for manual drawing and allows users to focus on other aspects of their creative projects.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancing Creativity<\/h3>\n\n\n\n<p>The Image to Sketch Converter opens up a realm of possibilities for artists and designers, enabling them to explore new creative avenues. It allows for experimentation with different styles, textures, and artistic effects, empowering users to bring their artistic visions to life.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Versatility in Artistic Styles<\/h3>\n\n\n\n<p>Image to Sketch Converters often provides users with a range of artistic styles to choose from. Whether it&#8217;s a realistic pencil sketch, a charcoal drawing, or a comic book-inspired illustration, these tools offer a diverse selection of styles to suit various artistic preferences.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Online Image to Sketch Converter Tool<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/tools.billionsideas.com\/de\/image-to-sketch\/\">BI TOOL<\/a> : BI TOOL is an online photo editor with a wide range of editing options, including a sketch converter. Upload your image to BeFunky, go to the &#8220;Artsy&#8221; section, and select the &#8220;Sketcher&#8221; option to apply a sketch effect.<\/li>\n\n\n\n<li>DeepArt.io: DeepArt.io allows you to transform your photos into various artistic styles, including sketch-like effects. Simply upload your image and select a sketching style to apply.<\/li>\n\n\n\n<li>Photo to Sketch: Photo to Sketch is a dedicated website for converting images into sketches. It provides different options for generating sketches, such as pencil sketches, charcoal sketches, and more. Upload your image, choose the desired sketch effect, and let the tool do its work.<\/li>\n\n\n\n<li>Lunapic: Lunapic is an online photo editing website that offers various effects and filters, including sketch conversion. Upload your image to Lunapic, go to the Effects tab, and select &#8220;Pencil Sketch&#8221; or &#8220;Sketch Color&#8221; to convert your image into a sketch.<\/li>\n\n\n\n<li>ConvertImage.net: ConvertImage.net provides a range of image editing tools, including a sketch converter. Upload your image, choose the &#8220;Pencil Sketch&#8221; option, adjust the settings if needed, and convert your image into a sketch.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>The Image to Sketch Converter is a valuable tool for artists, designers, and enthusiasts who want to transform their digital images into captivating sketches. By automating the sketching process, these tools save time and effort while offering a wide range of artistic styles. While they have limitations, they provide ample opportunities for creativity and artistic exploration.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list\">\n<div id=\"faq-question-1684917167912\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Can I convert any image into a sketch?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, most Image to Sketch Converters can handle a wide variety of images, including photographs, illustrations, and digital artwork.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684917178803\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Is there any free image to sketch converter tools available?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, there are free Image to Sketch Converter tools available. However, some may have limitations in terms of functionality or output quality. Premium versions of these tools often offer additional features and higher-resolution output.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684917192926\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Can I customize the sketch output using these tools?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Yes, many Images to Sketch Converters allow users to customize the output by adjusting various settings such as style, level of detail, and shading intensity. This enables users to achieve their desired artistic effect.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684917221575\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Are there any limitations in terms of file size or image resolution?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>Some Image to Sketch Converters may have limitations on file size or image resolution due to computational constraints. It&#8217;s advisable to check the specifications of the tool you&#8217;re using to ensure compatibility with your images.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1684917246930\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question\">Can I use the converted sketches for commercial purposes?<\/h3>\n<div class=\"rank-math-answer\">\n\n<p>The usage rights of converted sketches may vary depending on the tool and the specific terms and conditions associated with it. It&#8217;s important to review the licensing agreements or seek permission if you intend to use the sketches for commercial purposes.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Image To Sketch Select Image Sketch Sharpness Sketch Image Right click on image to save the image The Image to Sketch Converter is a powerful tool that utilizes advanced algorithms to analyze and interpret the content of an image, replicating it in the form of a sketch. This technology enables artists, designers, and even hobbyists &#8230; <a title=\"Image To Sketch\" class=\"read-more\" href=\"https:\/\/tools.billionsideas.com\/de\/image-to-sketch\/\" aria-label=\"Mehr Informationen \u00fcber Image To Sketch\">Weiterlesen &#8230;<\/a><\/p>","protected":false},"author":1,"featured_media":3645,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","footnotes":""},"class_list":["post-1946","page","type-page","status-publish","has-post-thumbnail"],"taxonomy_info":[],"featured_image_src_large":["https:\/\/tools.billionsideas.com\/wp-content\/uploads\/2023\/04\/image-to-sketch-bi-online-tool.png",800,500,false],"author_info":{"display_name":"Billions Ideas","author_link":"https:\/\/tools.billionsideas.com\/de\/author\/loginbillionsideas-com\/"},"comment_info":0,"jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/pages\/1946","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/comments?post=1946"}],"version-history":[{"count":0,"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/pages\/1946\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/media\/3645"}],"wp:attachment":[{"href":"https:\/\/tools.billionsideas.com\/de\/wp-json\/wp\/v2\/media?parent=1946"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}