{"id":9743,"date":"2024-10-16T12:01:28","date_gmt":"2024-10-16T10:01:28","guid":{"rendered":"https:\/\/inprofit.eu\/free-marketing-tools\/png-to-webp\/"},"modified":"2025-03-26T11:07:21","modified_gmt":"2025-03-26T09:07:21","slug":"png-to-webp","status":"publish","type":"page","link":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/","title":{"rendered":"PNG to WEBP"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"9743\" class=\"elementor elementor-9743 elementor-9611\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-19cf058 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no\" data-id=\"19cf058\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e47dda3\" data-id=\"e47dda3\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-67d1227 elementor-widget elementor-widget-html\" data-id=\"67d1227\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t  <style>.container {\n            background-color: white;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 2px 10px rgba(0,0,0,0.1);\n        }\n        h1 {\n            text-align: center;\n            color: #333;\n        }\n        input[type=\"file\"] {\n            margin-bottom: 20px;\n        }\n        button {\n            padding: 10px 20px;\n            background-color: #4CAF50;\n            color: white;\n            border: none;\n            cursor: pointer;\n            border-radius: 5px;\n        }\n        button:hover {\n            background-color: #45a049;\n        }\n        #output {\n            margin-top: 20px;\n        }\n        .download-all {\n            margin-top: 20px;\n        }\n<\/style>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-8de27e9 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no\" data-id=\"8de27e9\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8dc0934\" data-id=\"8dc0934\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-f1e66b9 elementor-widget elementor-widget-heading\" data-id=\"f1e66b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Convert PNG to Webp<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12c9c22 elementor-widget elementor-widget-html\" data-id=\"12c9c22\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"container\">\n\n        <input type=\"file\" id=\"fileInput\" accept=\"image\/png\" multiple>\n        <br>        <button onclick=\"convertToWebP()\">Convert to WEBP<\/button>\n        <div id=\"output\"><\/div>\n        <button id=\"downloadAllBtn\" class=\"download-all\" style=\"display: none;\" onclick=\"downloadAll()\">Download all in ZIP<\/button>\n    <\/div>\n\n    <script src=\"https:\/\/stuk.github.io\/jszip\/dist\/jszip.min.js\"><\/script>\n    <script>\n        const zip = new JSZip();\n        let convertedImages = [];\n\n        function convertToWebP() {\n            const fileInput = document.getElementById('fileInput');\n            const outputDiv = document.getElementById('output');\n            const files = fileInput.files;\n\n            if (!files.length) {\n                alert(\"Por favor, selecciona al menos una imagen PNG.\");\n                return;\n            }\n\n            convertedImages = []; \/\/ Resetear las im\u00e1genes convertidas\n            outputDiv.innerHTML = ''; \/\/ Limpiar el div de salida\n\n            Array.from(files).forEach((file, index) => {\n                if (file.type === 'image\/png') {\n                    const reader = new FileReader();\n\n                    reader.onload = function(event) {\n                        const img = new Image();\n                        img.src = event.target.result;\n\n                        img.onload = function() {\n                            const canvas = document.createElement('canvas');\n                            canvas.width = img.width;\n                            canvas.height = img.height;\n\n                            const ctx = canvas.getContext('2d');\n                            ctx.drawImage(img, 0, 0);\n\n                            \/\/ Convertir a WEBP\n                            canvas.toBlob(function(blob) {\n                                const webpURL = URL.createObjectURL(blob);\n                                const fileName = `convertido_${index + 1}.webp`;\n\n                                \/\/ Guardar la imagen convertida\n                                convertedImages.push({ blob, fileName });\n\n                                \/\/ Crear enlace de descarga individual\n                                const downloadLink = document.createElement('a');\n                                downloadLink.href = webpURL;\n                                downloadLink.download = fileName;\n                                downloadLink.textContent = `Descargar ${fileName}`;\n                                downloadLink.style.display = \"block\";\n                                outputDiv.appendChild(downloadLink);\n\n                                \/\/ Mostrar el bot\u00f3n para descargar todo en ZIP\n                                if (convertedImages.length === files.length) {\n                                    document.getElementById('downloadAllBtn').style.display = 'block';\n                                }\n                            }, 'image\/webp');\n                        };\n                    };\n\n                    reader.readAsDataURL(file);\n                } else {\n                    alert(\"Uno de los archivos no es una imagen PNG v\u00e1lida.\");\n                }\n            });\n        }\n\n        function downloadAll() {\n            if (!convertedImages.length) {\n                alert(\"No hay im\u00e1genes convertidas para descargar.\");\n                return;\n            }\n\n            convertedImages.forEach(({ blob, fileName }) => {\n                zip.file(fileName, blob);\n            });\n\n            zip.generateAsync({ type: \"blob\" }).then(function(content) {\n                const zipFileURL = URL.createObjectURL(content);\n                const link = document.createElement('a');\n                link.href = zipFileURL;\n                link.download = 'imagenes_convertidas.zip';\n                link.click();\n            });\n        }\n    <\/script>\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-cfa8cb9 elementor-section-boxed elementor-section-height-default elementor-section-height-default wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no\" data-id=\"cfa8cb9\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-150ac9c\" data-id=\"150ac9c\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-8cbf12d elementor-widget elementor-widget-spacer\" data-id=\"8cbf12d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-49d1b27 elementor-widget elementor-widget-heading\" data-id=\"49d1b27\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Want to stay up to date?<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c5b423f wpr-grid-slider-nav-position-custom elementor-widget elementor-widget-wpr-magazine-grid\" data-id=\"c5b423f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"wpr-magazine-grid.default\">\n\t\t\t\t\t<div class=\"wpr-magazine-grid-wrap\"  data-slide-effect=\"slide\"><section class=\"wpr-magazine-grid wpr-mgzn-grid-1-1-3 wpr-mgzn-grid-rows-1\"><article class=\"wpr-mgzn-grid-item elementor-clearfix post-21360 post type-post status-publish format-standard has-post-thumbnail hentry category-web-en tag-ai tag-automation tag-shopify-en tag-woocommerce\"><div class=\"wpr-grid-item-inner\"><div class=\"wpr-grid-media-wrap\" data-overlay-link=\"yes\"><div class=\"wpr-grid-image-wrap\" data-src=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Shopify-vs-Woocommerce-2026.webp\" style=\"background-image: url(https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Shopify-vs-Woocommerce-2026.webp)\"><\/div><div class=\"wpr-grid-media-hover wpr-animation-wrap\"><div class=\"wpr-grid-media-hover-bg  wpr-overlay-fade-out wpr-anim-size-medium wpr-anim-timing-ease-default wpr-anim-transparency\" data-url=\"https:\/\/inprofit.eu\/en\/web-en\/shopify-vs-woocommerce-in-2026-which-one-to-choose-with-ai-and-native-automation\/\"><\/div><div class=\"wpr-grid-media-hover-bottom elementor-clearfix\"><div class=\"wpr-grid-item-category elementor-repeater-item-4007b10 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-grid-tax-style-1\"><div class=\"inner-block\"><a class=\"wpr-pointer-item wpr-tax-id-361\" href=\"https:\/\/inprofit.eu\/en\/web-en\/\">Web<\/a><\/div><\/div><h3 class=\"wpr-grid-item-title elementor-repeater-item-467b8f8 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-none wpr-pointer-line-fx wpr-pointer-fx-slide\"><div class=\"inner-block\"><a  target=\"_self\"  href=\"https:\/\/inprofit.eu\/en\/web-en\/shopify-vs-woocommerce-in-2026-which-one-to-choose-with-ai-and-native-automation\/\">Shopify vs. WooCommerce in 2026: Which One to Choose with AI and Native Automation<\/a><\/div><\/h3><\/div><\/div><\/div><\/div><\/article><article class=\"wpr-mgzn-grid-item elementor-clearfix post-21335 post type-post status-publish format-standard has-post-thumbnail hentry category-search-engine-optimization tag-geo tag-google-core-update tag-seo-en\"><div class=\"wpr-grid-item-inner\"><div class=\"wpr-grid-media-wrap\" data-overlay-link=\"yes\"><div class=\"wpr-grid-image-wrap\" data-src=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Estrategia-SEO-para-google-core-update.webp\" style=\"background-image: url(https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Estrategia-SEO-para-google-core-update.webp)\"><\/div><div class=\"wpr-grid-media-hover wpr-animation-wrap\"><div class=\"wpr-grid-media-hover-bg  wpr-overlay-fade-out wpr-anim-size-medium wpr-anim-timing-ease-default wpr-anim-transparency\" data-url=\"https:\/\/inprofit.eu\/en\/search-engine-optimization\/how-to-build-an-seo-strategy-that-doesnt-rely-on-guessing-googles-next-core-update\/\"><\/div><div class=\"wpr-grid-media-hover-bottom elementor-clearfix\"><div class=\"wpr-grid-item-category elementor-repeater-item-4007b10 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-grid-tax-style-1\"><div class=\"inner-block\"><a class=\"wpr-pointer-item wpr-tax-id-189\" href=\"https:\/\/inprofit.eu\/en\/search-engine-optimization\/\">Search Engine Optimization<\/a><\/div><\/div><h3 class=\"wpr-grid-item-title elementor-repeater-item-467b8f8 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-none wpr-pointer-line-fx wpr-pointer-fx-slide\"><div class=\"inner-block\"><a  target=\"_self\"  href=\"https:\/\/inprofit.eu\/en\/search-engine-optimization\/how-to-build-an-seo-strategy-that-doesnt-rely-on-guessing-googles-next-core-update\/\">How to Build an SEO Strategy That Doesn&#8217;t Rely on Guessing Google&#8217;s Next Core Update<\/a><\/div><\/h3><\/div><\/div><\/div><\/div><\/article><article class=\"wpr-mgzn-grid-item elementor-clearfix post-21327 post type-post status-publish format-standard has-post-thumbnail hentry category-digital-transformation tag-ai tag-crm-en tag-erp-en tag-hubspot tag-odoo-spain tag-salesforce\"><div class=\"wpr-grid-item-inner\"><div class=\"wpr-grid-media-wrap\" data-overlay-link=\"yes\"><div class=\"wpr-grid-image-wrap\" data-src=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Odoo-hubspot-salesforce.webp\" style=\"background-image: url(https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Odoo-hubspot-salesforce.webp)\"><\/div><div class=\"wpr-grid-media-hover wpr-animation-wrap\"><div class=\"wpr-grid-media-hover-bg  wpr-overlay-fade-out wpr-anim-size-medium wpr-anim-timing-ease-default wpr-anim-transparency\" data-url=\"https:\/\/inprofit.eu\/en\/digital-transformation\/odoo-vs-hubspot-vs-salesforce-the-best-ai-powered-crm\/\"><\/div><div class=\"wpr-grid-media-hover-bottom elementor-clearfix\"><div class=\"wpr-grid-item-category elementor-repeater-item-4007b10 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-grid-tax-style-1\"><div class=\"inner-block\"><a class=\"wpr-pointer-item wpr-tax-id-194\" href=\"https:\/\/inprofit.eu\/en\/digital-transformation\/\">Digital transformation<\/a><\/div><\/div><h3 class=\"wpr-grid-item-title elementor-repeater-item-467b8f8 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-none wpr-pointer-line-fx wpr-pointer-fx-slide\"><div class=\"inner-block\"><a  target=\"_self\"  href=\"https:\/\/inprofit.eu\/en\/digital-transformation\/odoo-vs-hubspot-vs-salesforce-the-best-ai-powered-crm\/\">Odoo vs. HubSpot vs. Salesforce: The Best AI-Powered CRM<\/a><\/div><\/h3><\/div><\/div><\/div><\/div><\/article><article class=\"wpr-mgzn-grid-item elementor-clearfix post-21323 post type-post status-publish format-standard has-post-thumbnail hentry category-paid-media-en tag-ai-max tag-google-ads-agency tag-paid-media-en\"><div class=\"wpr-grid-item-inner\"><div class=\"wpr-grid-media-wrap\" data-overlay-link=\"yes\"><div class=\"wpr-grid-image-wrap\" data-src=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Google-ads-2026.webp\" style=\"background-image: url(https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Google-ads-2026.webp)\"><\/div><div class=\"wpr-grid-media-hover wpr-animation-wrap\"><div class=\"wpr-grid-media-hover-bg  wpr-overlay-fade-out wpr-anim-size-medium wpr-anim-timing-ease-default wpr-anim-transparency\" data-url=\"https:\/\/inprofit.eu\/en\/paid-media-en\/google-ads-in-2026-what-will-change-with-the-end-of-dsa\/\"><\/div><div class=\"wpr-grid-media-hover-bottom elementor-clearfix\"><div class=\"wpr-grid-item-category elementor-repeater-item-4007b10 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-grid-tax-style-1\"><div class=\"inner-block\"><a class=\"wpr-pointer-item wpr-tax-id-197\" href=\"https:\/\/inprofit.eu\/en\/paid-media-en\/\">Paid Media<\/a><\/div><\/div><h3 class=\"wpr-grid-item-title elementor-repeater-item-467b8f8 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-none wpr-pointer-line-fx wpr-pointer-fx-slide\"><div class=\"inner-block\"><a  target=\"_self\"  href=\"https:\/\/inprofit.eu\/en\/paid-media-en\/google-ads-in-2026-what-will-change-with-the-end-of-dsa\/\">Google Ads in 2026: What Will Change With the End of DSA<\/a><\/div><\/h3><\/div><\/div><\/div><\/div><\/article><article class=\"wpr-mgzn-grid-item elementor-clearfix post-21312 post type-post status-publish format-standard has-post-thumbnail hentry category-web-en tag-agentic-commerce tag-agentic-ecommerce-en tag-ecommerce-en\"><div class=\"wpr-grid-item-inner\"><div class=\"wpr-grid-media-wrap\" data-overlay-link=\"yes\"><div class=\"wpr-grid-image-wrap\" data-src=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Agentic-Commerce-en-ecommerce.webp\" style=\"background-image: url(https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/07\/Agentic-Commerce-en-ecommerce.webp)\"><\/div><div class=\"wpr-grid-media-hover wpr-animation-wrap\"><div class=\"wpr-grid-media-hover-bg  wpr-overlay-fade-out wpr-anim-size-medium wpr-anim-timing-ease-default wpr-anim-transparency\" data-url=\"https:\/\/inprofit.eu\/en\/web-en\/agentic-commerce-in-e-commerce-what-will-work-in-2026\/\"><\/div><div class=\"wpr-grid-media-hover-bottom elementor-clearfix\"><div class=\"wpr-grid-item-category elementor-repeater-item-4007b10 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-underline wpr-pointer-line-fx wpr-pointer-fx-fade wpr-grid-tax-style-1\"><div class=\"inner-block\"><a class=\"wpr-pointer-item wpr-tax-id-361\" href=\"https:\/\/inprofit.eu\/en\/web-en\/\">Web<\/a><\/div><\/div><h3 class=\"wpr-grid-item-title elementor-repeater-item-467b8f8 wpr-grid-item-display-block wpr-grid-item-align-left wpr-pointer-none wpr-pointer-line-fx wpr-pointer-fx-slide\"><div class=\"inner-block\"><a  target=\"_self\"  href=\"https:\/\/inprofit.eu\/en\/web-en\/agentic-commerce-in-e-commerce-what-will-work-in-2026\/\">Agentic Commerce in E-commerce: What Will Work in 2026<\/a><\/div><\/h3><\/div><\/div><\/div><\/div><\/article><\/section><\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-78cfef7 elementor-widget elementor-widget-spacer\" data-id=\"78cfef7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9a1c70e elementor-widget elementor-widget-text-editor\" data-id=\"9a1c70e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<h2>PNG to WEBP: The image conversion that optimizes the Web<\/h2><p>In today&#8217;s digital world, image optimization is key to achieving fast and efficient performance on any website. While the <strong>PNG<\/strong> format has been one of the most widely used standards for years for its ability to handle transparencies and high image quality, its file size can be a disadvantage for websites looking for fast load times and a good user experience. This is where the <strong>WEBP<\/strong> format comes into play, a more modern and efficient alternative created by Google, which allows for greater compression without losing quality.  <\/p><p>In this article, we will explore everything you need to know about <strong>PNG to WEBP conversion<\/strong>, the benefits of using this image format and how to perform the conversion effectively to optimize your website.<\/p><h3><strong>What is PNG format?<\/strong><\/h3><p>The <strong>PNG<\/strong> (Portable Network Graphics) format is one of the most popular formats for images on the web. It is known to be a lossless compression format, which means that it can maintain high image quality without losing detail when compressing the file. It also supports transparency, which makes it ideal for logos, graphics and images that require transparent backgrounds.  <\/p><h3><strong>Advantages of the PNG format:<\/strong><\/h3><ol><li><p><strong>High image quality<\/strong>: As a lossless compression format, PNG maintains the original image quality without sacrificing detail, making it ideal for graphics and designs where accuracy is key.<\/p><\/li><li><p><strong>Transparency support<\/strong>: PNG&#8217;s ability to handle transparencies makes it the preferred choice for logos and graphics with transparent backgrounds, especially on websites where images need to blend seamlessly with the design.<\/p><\/li><\/ol><h3><strong>Disadvantages of the PNG format:<\/strong><\/h3><ol><li><p><strong>Large file size<\/strong>: One of the main disadvantages of the PNG format is that the files can be significantly larger compared to other formats, which can slow down the loading time of web pages.<\/p><\/li><li><p><strong>Not ideal for photos<\/strong>: Although PNG is excellent for graphics and logos, it is not the best format for photographs, as its file size increases considerably when used for complex images such as photos.<\/p><\/li><\/ol><hr><h3><strong>What is WEBP format?<\/strong><\/h3><p><strong>WEBP<\/strong> is a modern image format developed by Google that provides both lossy and lossless compression. It is designed to be a more efficient alternative to formats such as PNG and JPEG, significantly reducing file size without compromising visual quality. WEBP also supports transparency (as does PNG), making it an excellent choice for use on the web.  <\/p><h3><strong>Advantages of the WEBP format:<\/strong><\/h3><ol><li><p><strong>Reduced file size<\/strong>: One of the biggest advantages of WEBP is its ability to compress images to a much smaller size than PNG or JPEG, without a noticeable loss of quality. This can result in faster load times for your website. <\/p><\/li><li><p><strong>Lossy and lossless compression<\/strong>: Unlike other formats, WEBP offers both lossy compression (where unnecessary visual information is removed to reduce file size) and lossless compression (where the original image quality is preserved).<\/p><\/li><li><p><strong>Transparency support<\/strong>: Like PNG, the WEBP format supports transparent images, which is ideal for graphics, logos and other visual elements that require a transparent background.<\/p><\/li><li><p><strong>Improved web performance<\/strong>: Since the WEBP format can significantly reduce the file size of images without affecting visual quality, using WEBP can improve website load times, resulting in a better user experience and potentially better search engine rankings.<\/p><\/li><\/ol><h3><strong>Disadvantages of the WEBP format:<\/strong><\/h3><ol><li><strong>Limited support in older browsers<\/strong>: While most modern browsers, such as Chrome, Firefox, Edge and Opera, support WEBP, some older browsers (especially older versions of Safari and Internet Explorer) do not. However, this limitation has decreased as more browsers adopt the format. <\/li><\/ol><hr><h2><strong>Why convert PNG images to WEBP?<\/strong><\/h2><p><strong>PNG to WEBP<\/strong> conversion is an excellent option for those looking to optimize their website performance. By reducing the size of image files, you can significantly improve page load times, which is crucial for visitor retention and SEO. <\/p><h3><strong>Benefits of converting PNG to WEBP for your website:<\/strong><\/h3><ol><li><p><strong>Reduced load time<\/strong>: Images are usually the heaviest elements on a web page. By converting images from PNG to WEBP, you can reduce their size by as much as 30-50% or more, which will drastically reduce the loading time of your site. <\/p><\/li><li><p><strong>Improved SEO<\/strong>: Search engines, such as Google, prioritize sites that load quickly, which means that image optimization can indirectly improve your rankings in search results.<\/p><\/li><li><p><strong>Bandwidth savings<\/strong>: Smaller file sizes not only mean faster load times, but also less bandwidth usage, which can be especially useful if your website has a high volume of traffic.<\/p><\/li><li><p><strong>Improved user experience<\/strong>: A faster and more optimized website offers a better user experience, which can increase retention rate and reduce bounce rate.<\/p><\/li><\/ol><hr><h2><strong>How to convert PNG to WEBP: Tools and Methods<\/strong><\/h2><p>There are multiple tools and methods for converting <strong>PNG<\/strong> images <strong>to WEBP<\/strong>, from desktop programs to online solutions and libraries that allow automatic conversion in real time.<\/p><h3><strong>a) On-line converters<\/strong><\/h3><p>There are many PNG to WEBP image converters available online that allow quick conversion without the need to install additional software. Here are some of the most recommended ones: <\/p><ul><li><p><strong>Convertio<\/strong>: Convertio is an easy to use tool that allows you to convert PNG images to WEBP for free and in a few steps. You just need to upload the PNG file and download the result in WEBP format. <\/p><\/li><li><p><strong>CloudConvert<\/strong>: CloudConvert is also a reliable option for converting PNG images to WEBP, with support for advanced settings such as image quality.<\/p><\/li><li><p><strong>TinyPNG<\/strong>: Although originally designed to optimize PNG images, TinyPNG also offers a WEBP conversion option, making it a useful option for users looking to improve the speed of their website.<\/p><\/li><\/ul><h3><strong>b) Desktop software tools<\/strong><\/h3><p>If you prefer to use a software tool on your computer to convert multiple images, there are also robust options that offer more control over the quality of the conversion:<\/p><ul><li><p><strong>GIMP<\/strong>: The popular image editor GIMP allows easy PNG to WEBP conversion through its export function. You can adjust the compression quality settings to get the best balance between quality and file size. <\/p><\/li><li><p><strong>Photoshop<\/strong>: Through specific plugins or by exporting in optimized formats, Photoshop also allows PNG to WEBP conversion.<\/p><\/li><\/ul><h3><strong>c) Automatic website conversions<\/strong><\/h3><p>If you have a website and you want to automatically convert PNG images to WEBP every time an image is uploaded, you can use services like <strong>Imagify<\/strong> or <strong>ShortPixel<\/strong>, which are WordPress plugins that automatically convert the images uploaded on your site to the most optimized format, such as WEBP.<\/p><p>In addition, for developers, more technical solutions can be implemented using <strong>libraries such as ImageMagick<\/strong> or <strong>Sharp<\/strong> in Node.js to perform the conversion on the server before delivering the images to the user.<\/p><hr><h2><strong>Improving SEO with WEBP images<\/strong><\/h2><p>Using WEBP images not only improves the performance of your website, but also has a positive impact on <strong>SEO<\/strong>. Google has made it clear that <strong>page performance<\/strong> is a key factor in search results ranking, and since WEBP can reduce the size of images without sacrificing quality, implementing it can improve your <strong>PageSpeed<\/strong> and consequently your position in the SERPs. <\/p><h3><strong>Strategies to improve SEO with WEBP images<\/strong>:<\/h3><ol><li><p><strong>Be sure to use the ALT attribute<\/strong>: Even if you optimize the image format, don&#8217;t forget to include clear and precise descriptions in the ALT attributes of your images. This not only improves the accessibility of your site, but also helps search engines to better understand the visual content. <\/p><\/li><li><p><strong>Implement WEBP format with support for PNG or JPEG<\/strong>: Since some older browsers do not yet support the WEBP format, it is advisable to use <code>&lt;picture&gt;<\/code> tags in your HTML code to provide alternative PNG or JPEG versions in case the browser does not support WEBP.<\/p><\/li><li><p><strong>Continuous optimization<\/strong>: Page load speed is not a one-time event. Be sure to continually monitor your site&#8217;s performance and optimize any new images you upload to your website. <\/p><\/li><\/ol><div><div><div dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"b14c0c9b-9c1d-44b4-8468-4541a010a036\" data-message-model-slug=\"gpt-4o\"><div><div><p><strong>PNG to WEBP<\/strong> conversion is one of the most effective strategies to improve your website performance without sacrificing image quality. With faster load times, better SEO and a smoother user experience, implementing the WEBP format can offer great benefits for both users and developers. <\/p><p>Don&#8217;t hesitate to take advantage of the many tools available to perform this conversion, from online options to automatic solutions for websites. With image optimization, you will not only improve the speed of your site, but also keep up with the best practices of the digital world. <\/p><\/div><\/div><\/div><\/div><div><div><div> <\/div><\/div><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Convert PNG to Webp Convert to WEBP Download all in ZIP Want to stay up to date? Automatizaci\u00f3n Workflows inteligentes: La automatizaci\u00f3n en ventas y marketing, el adi\u00f3s a los funnels tradicionales Branding Retailtainment: C\u00f3mo convertir la experiencia de compra en un espect\u00e1culo Martech Hub de Marketing: La poder de una estrategia conectada Tecnolog\u00edas Marketing Automatizaci\u00f3n de marketing inteligente para la Experiencia del Cliente Marketing \u00bfCu\u00e1les son los indicadores de SEO y Paid Media esenciales en marketing digital? PNG to WEBP: The image conversion that optimizes the Web In today&#8217;s digital world, image optimization is key to achieving fast and efficient performance on any website. While the PNG format has been one of the most widely used standards for years for its ability to handle transparencies and high image quality, its file size can be a disadvantage for websites looking for fast load times and a good user experience. This is where the WEBP format comes into play, a more modern and efficient alternative created by Google, which allows for greater compression without losing quality. In this article, we will explore everything you need to know about PNG to WEBP conversion, the benefits of using this image format and how to perform the conversion effectively to optimize your website. What is PNG format? The PNG (Portable Network Graphics) format is one of the most popular formats for images on the web. It is known to be a lossless compression format, which means that it can maintain high image quality without losing detail when compressing the file. It also supports transparency, which makes it ideal for logos, graphics and images that require transparent backgrounds. Advantages of the PNG format: High image quality: As a lossless compression format, PNG maintains the original image quality without sacrificing detail, making it ideal for graphics and designs where accuracy is key. Transparency support: PNG&#8217;s ability to handle transparencies makes it the preferred choice for logos and graphics with transparent backgrounds, especially on websites where images need to blend seamlessly with the design. Disadvantages of the PNG format: Large file size: One of the main disadvantages of the PNG format is that the files can be significantly larger compared to other formats, which can slow down the loading time of web pages. Not ideal for photos: Although PNG is excellent for graphics and logos, it is not the best format for photographs, as its file size increases considerably when used for complex images such as photos. What is WEBP format? WEBP is a modern image format developed by Google that provides both lossy and lossless compression. It is designed to be a more efficient alternative to formats such as PNG and JPEG, significantly reducing file size without compromising visual quality. WEBP also supports transparency (as does PNG), making it an excellent choice for use on the web. Advantages of the WEBP format: Reduced file size: One of the biggest advantages of WEBP is its ability to compress images to a much smaller size than PNG or JPEG, without a noticeable loss of quality. This can result in faster load times for your website. Lossy and lossless compression: Unlike other formats, WEBP offers both lossy compression (where unnecessary visual information is removed to reduce file size) and lossless compression (where the original image quality is preserved). Transparency support: Like PNG, the WEBP format supports transparent images, which is ideal for graphics, logos and other visual elements that require a transparent background. Improved web performance: Since the WEBP format can significantly reduce the file size of images without affecting visual quality, using WEBP can improve website load times, resulting in a better user experience and potentially better search engine rankings. Disadvantages of the WEBP format: Limited support in older browsers: While most modern browsers, such as Chrome, Firefox, Edge and Opera, support WEBP, some older browsers (especially older versions of Safari and Internet Explorer) do not. However, this limitation has decreased as more browsers adopt the format. Why convert PNG images to WEBP? PNG to WEBP conversion is an excellent option for those looking to optimize their website performance. By reducing the size of image files, you can significantly improve page load times, which is crucial for visitor retention and SEO. Benefits of converting PNG to WEBP for your website: Reduced load time: Images are usually the heaviest elements on a web page. By converting images from PNG to WEBP, you can reduce their size by as much as 30-50% or more, which will drastically reduce the loading time of your site. Improved SEO: Search engines, such as Google, prioritize sites that load quickly, which means that image optimization can indirectly improve your rankings in search results. Bandwidth savings: Smaller file sizes not only mean faster load times, but also less bandwidth usage, which can be especially useful if your website has a high volume of traffic. Improved user experience: A faster and more optimized website offers a better user experience, which can increase retention rate and reduce bounce rate. How to convert PNG to WEBP: Tools and Methods There are multiple tools and methods for converting PNG images to WEBP, from desktop programs to online solutions and libraries that allow automatic conversion in real time. a) On-line converters There are many PNG to WEBP image converters available online that allow quick conversion without the need to install additional software. Here are some of the most recommended ones: Convertio: Convertio is an easy to use tool that allows you to convert PNG images to WEBP for free and in a few steps. You just need to upload the PNG file and download the result in WEBP format. CloudConvert: CloudConvert is also a reliable option for converting PNG images to WEBP, with support for advanced settings such as image quality. TinyPNG: Although originally designed to optimize PNG images, TinyPNG also offers a WEBP conversion option, making it a useful option for users looking to improve the speed of their website. b) Desktop software tools If you prefer to<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":9737,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-9743","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.9 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Convert PNG to WEBP: Improve your website&#039;s speed<\/title>\n<meta name=\"description\" content=\"Convert your PNG images to WEBP easily and optimize your website performance with lightweight and high quality formats.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PNG to WEBP - Agencia Martech | Inprofit\" \/>\n<meta property=\"og:description\" content=\"Descubre las \u00faltimas soluciones de Marketing, estrategias de ventas online y nuevas tecnolog\u00edas con Inprofit, Agencia Martech y E-commerce\" \/>\n<meta property=\"og:url\" content=\"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/\" \/>\n<meta property=\"og:site_name\" content=\"Inprofit\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Inprofit1\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-26T09:07:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/01\/Marketing-Agency.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/free-marketing-tools\\\/png-to-webp\\\/\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/free-marketing-tools\\\/png-to-webp\\\/\",\"name\":\"Convert PNG to WEBP: Improve your website's speed\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#website\"},\"datePublished\":\"2024-10-16T10:01:28+00:00\",\"dateModified\":\"2025-03-26T09:07:21+00:00\",\"description\":\"Convert your PNG images to WEBP easily and optimize your website performance with lightweight and high quality formats.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/free-marketing-tools\\\/png-to-webp\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/inprofit.eu\\\/en\\\/free-marketing-tools\\\/png-to-webp\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/free-marketing-tools\\\/png-to-webp\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home page\",\"item\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Free Marketing Tools\",\"item\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/herramientas-de-marketing-gratuitas\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"PNG to WEBP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/\",\"name\":\"Inprofit\",\"description\":\"Agencia de Marketing y Tecnolog\u00eda\",\"publisher\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#organization\"},\"alternateName\":\"Inprofit\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#organization\",\"name\":\"Inprofit\",\"alternateName\":\"Inprofit\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Inprofit-agencia-360.webp\",\"contentUrl\":\"https:\\\/\\\/inprofit.eu\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/Inprofit-agencia-360.webp\",\"width\":1080,\"height\":1080,\"caption\":\"Inprofit\"},\"image\":{\"@id\":\"https:\\\/\\\/inprofit.eu\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Inprofit1\\\/\",\"https:\\\/\\\/es.linkedin.com\\\/company\\\/inprofit\",\"https:\\\/\\\/www.tiktok.com\\\/@inprofit.1\",\"https:\\\/\\\/www.instagram.com\\\/inprofit.1\\\/\"],\"description\":\"Marketing agency, strategy and digital transformation for companies and SMEs. We boost your growth with customized solutions, integrating innovation, creativity and technology to maximize your impact in the digital and physical world. \",\"email\":\"info@inprofit.eu\",\"telephone\":\"+34965594272\",\"legalName\":\"Inprofit Consulting SL\",\"foundingDate\":\"2018-10-18\",\"vatID\":\"B42605055\",\"taxID\":\"B42605055\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Convert PNG to WEBP: Improve your website's speed","description":"Convert your PNG images to WEBP easily and optimize your website performance with lightweight and high quality formats.","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:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/","og_locale":"en_US","og_type":"article","og_title":"PNG to WEBP - Agencia Martech | Inprofit","og_description":"Descubre las \u00faltimas soluciones de Marketing, estrategias de ventas online y nuevas tecnolog\u00edas con Inprofit, Agencia Martech y E-commerce","og_url":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/","og_site_name":"Inprofit","article_publisher":"https:\/\/www.facebook.com\/Inprofit1\/","article_modified_time":"2025-03-26T09:07:21+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/inprofit.eu\/wp-content\/uploads\/2026\/01\/Marketing-Agency.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/","url":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/","name":"Convert PNG to WEBP: Improve your website's speed","isPartOf":{"@id":"https:\/\/inprofit.eu\/en\/#website"},"datePublished":"2024-10-16T10:01:28+00:00","dateModified":"2025-03-26T09:07:21+00:00","description":"Convert your PNG images to WEBP easily and optimize your website performance with lightweight and high quality formats.","breadcrumb":{"@id":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/inprofit.eu\/en\/free-marketing-tools\/png-to-webp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home page","item":"https:\/\/inprofit.eu\/en\/home\/"},{"@type":"ListItem","position":2,"name":"Free Marketing Tools","item":"https:\/\/inprofit.eu\/en\/herramientas-de-marketing-gratuitas\/"},{"@type":"ListItem","position":3,"name":"PNG to WEBP"}]},{"@type":"WebSite","@id":"https:\/\/inprofit.eu\/en\/#website","url":"https:\/\/inprofit.eu\/en\/","name":"Inprofit","description":"Agencia de Marketing y Tecnolog\u00eda","publisher":{"@id":"https:\/\/inprofit.eu\/en\/#organization"},"alternateName":"Inprofit","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/inprofit.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/inprofit.eu\/en\/#organization","name":"Inprofit","alternateName":"Inprofit","url":"https:\/\/inprofit.eu\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/inprofit.eu\/en\/#\/schema\/logo\/image\/","url":"https:\/\/inprofit.eu\/wp-content\/uploads\/2024\/12\/Inprofit-agencia-360.webp","contentUrl":"https:\/\/inprofit.eu\/wp-content\/uploads\/2024\/12\/Inprofit-agencia-360.webp","width":1080,"height":1080,"caption":"Inprofit"},"image":{"@id":"https:\/\/inprofit.eu\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Inprofit1\/","https:\/\/es.linkedin.com\/company\/inprofit","https:\/\/www.tiktok.com\/@inprofit.1","https:\/\/www.instagram.com\/inprofit.1\/"],"description":"Marketing agency, strategy and digital transformation for companies and SMEs. We boost your growth with customized solutions, integrating innovation, creativity and technology to maximize your impact in the digital and physical world. ","email":"info@inprofit.eu","telephone":"+34965594272","legalName":"Inprofit Consulting SL","foundingDate":"2018-10-18","vatID":"B42605055","taxID":"B42605055","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}}]}},"_links":{"self":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/pages\/9743","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/comments?post=9743"}],"version-history":[{"count":0,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/pages\/9743\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/pages\/9737"}],"wp:attachment":[{"href":"https:\/\/inprofit.eu\/en\/wp-json\/wp\/v2\/media?parent=9743"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}