{"id":390,"date":"2019-08-20T22:14:05","date_gmt":"2019-08-20T16:44:05","guid":{"rendered":"http:\/\/www.codingheroes.in\/blog\/?p=390"},"modified":"2019-08-20T22:15:23","modified_gmt":"2019-08-20T16:45:23","slug":"what-is-webp-image-format-why-use-it-and-how-to-use-it","status":"publish","type":"post","link":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/","title":{"rendered":"What is Webp Image Format? Why Use It and How to Use It."},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-388\" src=\"http:\/\/www.codingheroes.in\/blog\/wp-content\/uploads\/2019\/08\/webp-image-300x172.jpg\" alt=\"\" width=\"745\" height=\"427\" srcset=\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image-300x172.jpg 300w, https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg 720w\" sizes=\"auto, (max-width: 745px) 100vw, 745px\" \/><\/p>\n<p>Webp image format that provides both lossless and compresses images format on the web. Using Webp images, make your web pages faster and decease web pages load time. Webp image format created by google web performance team as a replacement of JPEG, PNG, and GIF different kinds of images.<\/p>\n<p>The format was first announced on 30 September 2010, as a new open standard for lossy compressed true-color graphics on the web, producing smaller files of comparable image quality to the older JPEG scheme.<\/p>\n<p>On October 3, 2011, Google announced WebP support for animation, ICC profile, XMP metadata, and tiling (compositing very large images from maximum 16384\u00d716384 tiles).<\/p>\n<h2>How does WebP image Work?<\/h2>\n<p>Webp Lossy compression image format uses predicting coding to encode an image, like the same method used in VP8 video codec to compress keyframes in videos. Predicting coding use the neighbor values of pixels blocks to predict the block values, and then encodes only differences. WebP Lossless compression uses image fragments in order to exactly reconstruct new pixels.<\/p>\n<h2>WebP Support<\/h2>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-389\" src=\"http:\/\/www.codingheroes.in\/blog\/wp-content\/uploads\/2019\/08\/webp-support-capture-300x56.jpg\" alt=\"\" width=\"798\" height=\"149\" srcset=\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-support-capture-300x56.jpg 300w, https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-support-capture-768x143.jpg 768w, https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-support-capture-1030x191.jpg 1030w, https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-support-capture.jpg 1897w\" sizes=\"auto, (max-width: 798px) 100vw, 798px\" \/><\/p>\n<p>WebP can also be displayed in all major browsers using the WebPJS JavaScript library. Currently, only Google Chrome and Opera support WebP images. Although other popular web browsers such as Firefox, Safari, and IE do not currently support the new image format natively, there has been some discussion regarding this topic at social media.<\/p>\n<h2>Which web browsers natively support WebP?<\/h2>\n<h3>WebP lossy support<\/h3>\n<ul>\n<li>Google Chrome (desktop) 17+<\/li>\n<li>Google Chrome for Android version 25+<\/li>\n<li>Microsoft Edge 18+<\/li>\n<li>Firefox 65+<\/li>\n<li>Opera 11.10+<\/li>\n<li>Native web browser, Android 4.0+ (ICS)<\/li>\n<\/ul>\n<h3>WebP lossy, lossless &amp; alpha support<\/h3>\n<ul>\n<li>Google Chrome (desktop) 23+<\/li>\n<li>Google Chrome for Android version 25+<\/li>\n<li>Microsoft Edge 18+<\/li>\n<li>Firefox 65+<\/li>\n<li>Opera 12.10+<\/li>\n<li>Native web browser, Android 4.2+ (JB-MR1)<\/li>\n<li>Pale Moon 26+<\/li>\n<\/ul>\n<h3>WebP Animation support<\/h3>\n<ul>\n<li>Google Chrome (desktop and Android) 32+<\/li>\n<li>Microsoft Edge 18+<\/li>\n<li>Firefox 65+<\/li>\n<li>Opera 19+<\/li>\n<\/ul>\n<h2>Use WebP Image in HTML File.<\/h2>\n<p>Using a WebP image in HTML is like using any other kind of image, right? Just slap that sucker into the\u00a0<img \/>\u00a0tag&#8217;s\u00a0src\u00a0attribute and away you go!<\/p>\n<p>HTML Code,<br \/>\n<strong>&lt;img src=&#8221;img\/myAwesomeWebPImage.webp&#8221; alt=&#8221;WebP rules.&#8221; \/&gt;<\/strong><\/p>\n<p>This will work great, but only for browsers that support it.<\/p>\n<p>So what is the solution for the non-compatible browser or what we do that&#8217;s browsers are not supported to webp image format.<br \/>\nwe use,<\/p>\n<p>HTML Code,<br \/>\n<strong>&lt;picture&gt; <\/strong><br \/>\n<strong>&lt;source srcset=&#8221;img\/my.webp&#8221; type=&#8221;image\/webp&#8221;&gt; <\/strong><br \/>\n<strong>&lt;source srcset=&#8221;img\/my.jpg&#8221; type=&#8221;image\/jpeg&#8221;&gt; <\/strong><br \/>\n<strong>&lt;img src=&#8221;img\/my.jpg&#8221; alt=&#8221;my&#8221;&gt;<\/strong><br \/>\n<strong>&lt;\/picture&gt;<\/strong><\/p>\n<p>it will work in every single browser, not just those that support the\u00a0<picture>\u00a0element.\u00a0The reason for this is that browsers that don&#8217;t support\u00a0<\/picture><picture>\u00a0will just display whatever source is specified in the\u00a0<img \/>tag.<\/picture>\n<h2>How to use the webp image as a background image or CSS?<\/h2>\n<p>It made more complex when you need to use WebP images in CSS or set webp image as background.<br \/>\nWhen you add this custom build to your website via the\u00a0&lt;script&gt;\u00a0tag, it will automatically add one of two classes to the\u00a0&lt;html&gt;\u00a0element:<\/p>\n<div>\n<ol>\n<li>The\u00a0webp\u00a0class is added when the browser supports WebP.<\/li>\n<li>The\u00a0no-webp\u00a0class is added when the browser\u00a0<em>doesn&#8217;t<\/em>\u00a0support WebP.<\/li>\n<\/ol>\n<p>CSS<\/p>\n<p>.no-webp .elementWithBackgroundImage {<\/p>\n<p>background-image: url(&#8220;image.jpg&#8221;);<\/p>\n<p>}<\/p>\n<p>.webp .elementWithBackgroundImage{<\/p>\n<p>background-image: url(&#8220;image.webp&#8221;);<\/p>\n<p>}<\/p>\n<\/div>\n<h2>Script Include when use webp as CSS file.<\/h2>\n<div>\n<p><strong>Web Script<\/strong><\/p>\n<p>&lt;script&gt;<\/p>\n<p>\/*! modernizr 3.6.0 (Custom Build) | MIT *<\/p>\n<p>* https:\/\/modernizr.com\/download\/?-webp-setclasses !*\/<\/p>\n<p>!function(e,n,A){function o(e,n){return typeof e===n}function t(){var e,n,A,t,a,i,l;for(var f in r)if(r.hasOwnProperty(f)){if(e=[],n=r[f],n.name&amp;&amp;(e.push(n.name.toLowerCase()),n.options&amp;&amp;n.options.aliases&amp;&amp;n.options.aliases.length))for(A=0;A&lt;n.options.aliases.length;A++)e.push(n.options.aliases[A].toLowerCase());for(t=o(n.fn,&#8221;function&#8221;)?n.fn():n.fn,a=0;a&lt;e.length;a++)i=e[a],l=i.split(&#8220;.&#8221;),1===l.length?Modernizr[l[0]]=t:(!Modernizr[l[0]]||Modernizr[l[0]]instanceof Boolean||(Modernizr[l[0]]=new Boolean(Modernizr[l[0]])),Modernizr[l[0]][l[1]]=t),s.push((t?&#8221;&#8221;:&#8221;no-&#8220;)+l.join(&#8220;-&#8220;))}}function a(e){var n=u.className,A=Modernizr._config.classPrefix||&#8221;&#8221;;if(c&amp;&amp;(n=n.baseVal),Modernizr._config.enableJSClass){var o=new RegExp(&#8220;(^|\\\\s)&#8221;+A+&#8221;no-js(\\\\s|$)&#8221;);n=n.replace(o,&#8221;$1&#8243;+A+&#8221;js$2&#8243;)}Modernizr._config.enableClasses&amp;&amp;(n+=&#8221; &#8220;+A+e.join(&#8221; &#8220;+A),c?u.className.baseVal=n:u.className=n)}function i(e,n){if(&#8220;object&#8221;==typeof e)for(var A in e)f(e,A)&amp;&amp;i(A,e[A]);else{e=e.toLowerCase();var o=e.split(&#8220;.&#8221;),t=Modernizr[o[0]];if(2==o.length&amp;&amp;(t=t[o[1]]),&#8221;undefined&#8221;!=typeof t)return Modernizr;n=&#8221;function&#8221;==typeof n?n():n,1==o.length?Modernizr[o[0]]=n:(!Modernizr[o[0]]||Modernizr[o[0]]instanceof Boolean||(Modernizr[o[0]]=new Boolean(Modernizr[o[0]])),Modernizr[o[0]][o[1]]=n),a([(n&amp;&amp;0!=n?&#8221;&#8221;:&#8221;no-&#8220;)+o.join(&#8220;-&#8220;)]),Modernizr._trigger(e,n)}return Modernizr}var s=[],r=[],l={_version:&#8221;3.6.0&#8243;,_config:{classPrefix:&#8221;&#8221;,enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,n){var A=this;setTimeout(function(){n(A[e])},0)},addTest:function(e,n,A){r.push({name:e,fn:n,options:A})},addAsyncTest:function(e){r.push({name:null,fn:e})}},Modernizr=function(){};Modernizr.prototype=l,Modernizr=new Modernizr;var f,u=n.documentElement,c=&#8221;svg&#8221;===u.nodeName.toLowerCase();!function(){var e={}.hasOwnProperty;f=o(e,&#8221;undefined&#8221;)||o(e.call,&#8221;undefined&#8221;)?function(e,n){return n in e&amp;&amp;o(e.constructor.prototype[n],&#8221;undefined&#8221;)}:function(n,A){return e.call(n,A)}}(),l._l={},l.on=function(e,n){this._l[e]||(this._l[e]=[]),this._l[e].push(n),Modernizr.hasOwnProperty(e)&amp;&amp;setTimeout(function(){Modernizr._trigger(e,Modernizr[e])},0)},l._trigger=function(e,n){if(this._l[e]){var A=this._l[e];setTimeout(function(){var e,o;for(e=0;e&lt;A.length;e++)(o=A[e])(n)},0),delete this._l[e]}},Modernizr._q.push(function(){l.addTest=i}),Modernizr.addAsyncTest(function(){function e(e,n,A){function o(n){var o=n&amp;&amp;&#8221;load&#8221;===n.type?1==t.width:!1,a=&#8221;webp&#8221;===e;i(e,a&amp;&amp;o?new Boolean(o):o),A&amp;&amp;A(n)}var t=new Image;t.onerror=o,t.onload=o,t.src=n}var n=[{uri:&#8221;data:image\/webp;base64,UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAwA0JaQAA3AA\/vuUAAA=&#8221;,name:&#8221;webp&#8221;},{uri:&#8221;data:image\/webp;base64,UklGRkoAAABXRUJQVlA4WAoAAAAQAAAAAAAAAAAAQUxQSAwAAAABBxAR\/Q9ERP8DAABWUDggGAAAADABAJ0BKgEAAQADADQlpAADcAD++\/1QAA==&#8221;,name:&#8221;webp.alpha&#8221;},{uri:&#8221;data:image\/webp;base64,UklGRlIAAABXRUJQVlA4WAoAAAASAAAAAAAAAAAAQU5JTQYAAAD\/\/\/\/\/AABBTk1GJgAAAAAAAAAAAAAAAAAAAGQAAABWUDhMDQAAAC8AAAAQBxAREYiI\/gcA&#8221;,name:&#8221;webp.animation&#8221;},{uri:&#8221;data:image\/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ\/\/73v\/+BiOh\/AAA=&#8221;,name:&#8221;webp.lossless&#8221;}],A=n.shift();e(A.name,A.uri,function(A){if(A&amp;&amp;&#8221;load&#8221;===A.type)for(var o=0;o&lt;n.length;o++)e(n[o].name,n[o].uri)})}),t(),a(s),delete l.addTest,delete l.addAsyncTest;for(var p=0;p&lt;Modernizr._q.length;p++)Modernizr._q[p]();e.Modernizr=Modernizr}(window,document);<\/p>\n<p>&lt;\/script&gt;<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Webp image format that provides both lossless and compresses images format on the web. Using Webp images, make your web pages faster and decease web pages load time. Webp image [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":388,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18],"tags":[],"class_list":["post-390","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools<\/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:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools\" \/>\n<meta property=\"og:description\" content=\"Webp image format that provides both lossless and compresses images format on the web. Using Webp images, make your web pages faster and decease web pages load time. Webp image [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\" \/>\n<meta property=\"og:site_name\" content=\"MyFreeOnlineTools\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-20T16:44:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-08-20T16:45:23+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"720\" \/>\n\t<meta property=\"og:image:height\" content=\"412\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"myfreeonlinetools\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"myfreeonlinetools\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\"},\"author\":{\"name\":\"myfreeonlinetools\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\"},\"headline\":\"What is Webp Image Format? Why Use It and How to Use It.\",\"datePublished\":\"2019-08-20T16:44:05+00:00\",\"dateModified\":\"2019-08-20T16:45:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\"},\"wordCount\":1174,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\",\"name\":\"What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools\",\"isPartOf\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg\",\"datePublished\":\"2019-08-20T16:44:05+00:00\",\"dateModified\":\"2019-08-20T16:45:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg\",\"width\":720,\"height\":412},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/myfreeonlinetools.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Webp Image Format? Why Use It and How to Use It.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#website\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"name\":\"MyFreeOnlineTools\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#organization\",\"name\":\"MyFreeOnlineTools\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"contentUrl\":\"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png\",\"width\":387,\"height\":79,\"caption\":\"MyFreeOnlineTools\"},\"image\":{\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c\",\"name\":\"myfreeonlinetools\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g\",\"caption\":\"myfreeonlinetools\"},\"description\":\"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.\",\"sameAs\":[\"https:\/\/myfreeonlinetools.com\/\",\"https:\/\/www.facebook.com\/LearnSchoolOnline\/\",\"https:\/\/www.youtube.com\/learnschoolonline\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools","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:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/","og_locale":"en_US","og_type":"article","og_title":"What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools","og_description":"Webp image format that provides both lossless and compresses images format on the web. Using Webp images, make your web pages faster and decease web pages load time. Webp image [&hellip;]","og_url":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/","og_site_name":"MyFreeOnlineTools","article_author":"https:\/\/www.facebook.com\/LearnSchoolOnline\/","article_published_time":"2019-08-20T16:44:05+00:00","article_modified_time":"2019-08-20T16:45:23+00:00","og_image":[{"width":720,"height":412,"url":"http:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg","type":"image\/jpeg"}],"author":"myfreeonlinetools","twitter_card":"summary_large_image","twitter_misc":{"Written by":"myfreeonlinetools","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#article","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/"},"author":{"name":"myfreeonlinetools","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c"},"headline":"What is Webp Image Format? Why Use It and How to Use It.","datePublished":"2019-08-20T16:44:05+00:00","dateModified":"2019-08-20T16:45:23+00:00","mainEntityOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/"},"wordCount":1174,"commentCount":0,"publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg","articleSection":["Blog"],"inLanguage":"en","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/","url":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/","name":"What is Webp Image Format? Why Use It and How to Use It. - MyFreeOnlineTools","isPartOf":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage"},"thumbnailUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg","datePublished":"2019-08-20T16:44:05+00:00","dateModified":"2019-08-20T16:45:23+00:00","breadcrumb":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#primaryimage","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/08\/webp-image.jpg","width":720,"height":412},{"@type":"BreadcrumbList","@id":"https:\/\/myfreeonlinetools.com\/blog\/what-is-webp-image-format-why-use-it-and-how-to-use-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/myfreeonlinetools.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is Webp Image Format? Why Use It and How to Use It."}]},{"@type":"WebSite","@id":"https:\/\/myfreeonlinetools.com\/blog\/#website","url":"https:\/\/myfreeonlinetools.com\/blog\/","name":"MyFreeOnlineTools","description":"","publisher":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/myfreeonlinetools.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/myfreeonlinetools.com\/blog\/#organization","name":"MyFreeOnlineTools","url":"https:\/\/myfreeonlinetools.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","contentUrl":"https:\/\/myfreeonlinetools.com\/blog\/wp-content\/uploads\/2019\/11\/myfreeonlinetools-blue.png","width":387,"height":79,"caption":"MyFreeOnlineTools"},"image":{"@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/b1eb72e57c554e3b33cfeec477efcc3c","name":"myfreeonlinetools","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/myfreeonlinetools.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b870b17c6c7e3b75d7fe0b8bebfc9cf5?s=96&d=mm&r=g","caption":"myfreeonlinetools"},"description":"Live in Delhi, Working in Gurgaon as Web Designer and Graphic Designer. Developed and Design myfreeonlinetools for online free tools. Also having youtube channel Name with LearnSchoolOnline. Traveling, watching movies, coding are the hobbies.","sameAs":["https:\/\/myfreeonlinetools.com\/","https:\/\/www.facebook.com\/LearnSchoolOnline\/","https:\/\/www.youtube.com\/learnschoolonline"]}]}},"_links":{"self":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/390","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/comments?post=390"}],"version-history":[{"count":0,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/posts\/390\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media\/388"}],"wp:attachment":[{"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/media?parent=390"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/categories?post=390"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/myfreeonlinetools.com\/blog\/wp-json\/wp\/v2\/tags?post=390"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}