WebP is an open standard for image encoding. It is intended to provide support for animation, metadata, lossless compression, and transparency without the patent or license restrictions of existing formats.

learn more… | top users | synonyms

0
votes
0answers
10 views

How to obtain latest libwebp.dll?

I would like to use the WebP encoder from my C# project. When I go by Google instructions I get this error: Makefile.vc(16) : fatal error U1050: Unable to auto-detect toolchain architectur e! If ...
2
votes
1answer
87 views

How do I display a WebP image in a TImage or just TBitmap? [closed]

Delphi-WebP is a project providing Delphi bindings for Google's libWebP.dll, which loads WebP images, but the project provides no Delphi-specific image code. How can I load a WebP image into a TImage ...
1
vote
0answers
35 views

Why does Imagemagick produce strange results when converting to WEBP format?

I was experimenting with JPEG2000 and WEBP through Imagemagick. They were both giving me much better compression levels than I had gotten from JPEG in GIMP, with WEBP doing better than JPEG2000. But ...
0
votes
1answer
42 views

Use WebP images on website [duplicate]

I want try to use images in WebP format as background images on my webpages. But I'm not sure, how make condition in CSS that if browser not support WebP format so in this case use classic jpg image. ...
0
votes
1answer
43 views

Quicker conversion to WebP

I've tried WebP converter to convert images to WebP format, but it takes about 1-2 second for one image to convert. I have around 70 images and I'd like to convert them in less than a minute. Is there ...
1
vote
1answer
88 views

How to convert images like JPEG, PNG, etc. to WebP with ColdFusion while maintaining the metadata?

I'm looking for an effective method for automating the conversion of a number of images to the WebP image format. I'm particularly interested in a method that will keep the metadata or allow me to add ...
0
votes
0answers
63 views

If Chrome, use WebP

Because currently only Chrome and Opera supports WebP, I was wondering if I could target those two particular browsers and redirect them to fetch another version of my website so I can help optimize ...
2
votes
1answer
122 views

WebP lossless format overview

I am reading the official WebP lossless bitstream spec. and I have a feeling, that the document is missing some explanation. Let me describe some fragments of the specification: 1. Introduction - ...
0
votes
0answers
164 views

MFC Convert CBitmap screenshot into RGB pointer for WebP image encoding

I'm working on some software to encode screen capture images into webp format, but have ran into some strange difficulties. Here is my webp wrapper class: #pragma once #include "stdafx.h" #include ...
2
votes
1answer
164 views

Convert Bitmap to WebP Image?

Anyone know if it's possible to convert a Bitmap to a WebP image using C#? Been Google-ing around but wasn't able to find anything for C#. I found this: mc-kay/libwebp-sharp · GitHub but it doesn't ...
0
votes
0answers
49 views

webp WebpDecodeARGB ouput size

I'm a french student in computer science. I'm trying to develop a wrapper to use libwebp in a Flash program. In order to use decoded data in my app I need to know output data size after decoding. I ...
0
votes
0answers
79 views

Cannot get bitmap size of a webP image that has transparency?

i'm making some experiments with the relatively new webP image format , that is supported on android 4 (ICS) as shown here . so far , in order to get the image size before loading it , i used the ...
0
votes
1answer
232 views

Animated WebP browser support

Does Chrome support animated webP? Is there an example of such an image? I'm not finding one.
0
votes
0answers
108 views

Read and show WebP images

I know this question is already mentioned on some places (like here), but is there an easy way to read WebP images, like using a jar file? It would be great to minimize the size of images of apps ...
2
votes
1answer
221 views

How to create a lossless WebP image using toDataURL?

I'm trying out the WebP image format in Chrome using the canvas element. On MDN I saw that toDataURL accepts a second argument representing the quality of the resulting image. I'd like to generate a ...
0
votes
1answer
102 views

Webp very low quality when converting transparent PNG image files

I want to use Webp and get my images much small, at last for serving them to chrome browsers. I've download many types of conversion tools, including the official one. I tried to convert PNG with ...
0
votes
3answers
267 views

WebP encoding - Segmentation Fault

So I'm trying to use the webp API to encode images. Right now I'm going to be using openCV to open and manipulate the images, then I want to save them off as webp. Here's the source I'm using: ...
1
vote
1answer
165 views

The Correct C# PInvoke Signature For This WebP C++ Function

Im trying to write a C# wrapper for Google's WebP encoder. The method im trying to call is: // Returns the size of the compressed data (pointed to by *output), or 0 if // an error occurred. The ...
1
vote
2answers
1k views

WebP image format on iOS

I’m currently researching the possibility to use Google’s WebP image format in our iOS software. I found it’s not hard to decode the WebP into RGBA8888 as needed using the google’s C-library. ...
0
votes
3answers
227 views

WebP Image Replacement

My end goal is to detect if the browser is capable of displaying webp images. If it is, replace all the images on the page with their webp equivalent (located in the same directory with the same ...
2
votes
2answers
192 views

How to detect browsers supporting WebP and how to serve them WebP pictures?

Seen the amazing size reduction of WebP pictures (about 28% smaller than "pngcrushed" PNG for lossless + alpha pictures), we'd like to serve WebP pictures to browsers supporting WebP. How can I ...
2
votes
2answers
497 views

WebP library for C#

It seems like there is no code samples for WebP in C#. Is there any? I don't need to display WebP images directly but saving & transferring as WebP would be nice.
3
votes
4answers
2k views

WebP for Android

Are there any examples on how to use WebP for Android? Im trying to get a list of webp images and show them in a listview with an imageview. I know theres a libwebp api and I have integrated it into ...
6
votes
2answers
556 views

Manipulate WebP images in Python

I'm looking for something like PIL (Python Imaging Library), which sadly doesn't support WebP images. I'd like to be able to do resizes and crops. Or at least convert to JPEG and then I can work it ...
0
votes
2answers
428 views

Google webp library for iPhone?

Is Google webp library available for iPhone/XCode ? Is there a FAQ to compile this library from sources ?
16
votes
4answers
2k views

Detecting WebP support

How can I detect support for WebP via Javascript? I'd like to use feature detection rather than browser detection if possible, but I can't find a way to do so. Modernizr (www.modernizr.com) doesn't ...
3
votes
2answers
792 views

What advantages are there for Google to send images as Base64 rather than e.g. jpg

I noticed that Google's new page preview gets it's images using base64 rather than plain e.g. jpgs or png's What are the advantages of doing this? Can base64 encoded images be compressed better ...