Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
45 views

I want to encode image into webp in dart. I created libwebp.dll file (sources https://github.com/jacklicn/libwebp) Now I have to use this library for encoding process: import 'dart:ffi'; import 'dart:...
Alerr's user avatar
  • 151
0 votes
1 answer
52 views

I'm encountering a peculiar issue in my web application where I use React.js for the frontend and PHP for the backend. The image upload and processing workflow (cropping, format conversion, etc.) ...
babak-maziar's user avatar
0 votes
0 answers
98 views

Converting a UIImage to the WebP format is extremely slow. For a 2.5M HEIF photo with a compression ratio of 0.85, SDImageWebPCoder and libwebp take about 13.5 seconds. SDImageWebPCoder let webpCoder ...
pogong's user avatar
  • 31
1 vote
1 answer
175 views

I am using the WebP Express plugin in WordPress, and it correctly replaces elements with tags when the page loads initially. However, when I load additional content via AJAX, the newly added images ...
Sergey Pervushin's user avatar
0 votes
0 answers
60 views

With the camera I take a set of photo like this: const takePicture = useCallback(async () => { try { const picture = await camera.current.takePictureAsync({ quality: 0.4, ...
Yohav Rn's user avatar
  • 229
0 votes
0 answers
61 views

I'm having problem to serve webp format images through htaccess. I have followed https://www.digitalocean.com/community/tutorials/how-to-create-and-serve-webp-images-to-speed-up-your-website and https:...
mniarbaiz's user avatar
1 vote
1 answer
680 views

I'm trying to rotate a WEBP without having to recompress it. The best way I can think of is by simply setting metadata to change its orientation. How do I set the Orientation/Rotation metadata for a ...
Nuno's user avatar
  • 3,782
0 votes
1 answer
86 views

I just cannot display a .webp file. Html code: <body> Test Webp/JPG images: <br /><br /> Image1 Webp (1.4 MB):<br /> <picture> <source type="image/webp" ...
Lars M's user avatar
  • 3
0 votes
0 answers
71 views

Problem: When saving a sequence of images as a lossless WebP animation using PIL, the last pixel (bottom-right) becomes black. from PIL import Image for png_file in png_files: image = Image.open(...
fabpub's user avatar
  • 51
1 vote
1 answer
354 views

Trying to compile the go-webp package using Bazel. This involves compiling libwebp from sources. Here's how I'm retrieving libwebp's sources: # WORKSPACE git_repository( name = "libwebp",...
Victor's user avatar
  • 14.7k
1 vote
0 answers
429 views

Do you have any suggestions on importing .webp images in pictureboxes without using external libraries? I read on a post here that in theory System.Drawing supports .webp format but found nothing ...
grimoiredark's user avatar
0 votes
1 answer
66 views

found some code on here at PHP - Create one image from images, the code works however, when I look at the output the edges of each image are extremely low quality (blocky). Here is the code I'm using, ...
Simon's user avatar
  • 77
0 votes
0 answers
214 views

I'm using filepond with jpeg and png files and all works well. The page show an image that can be deleted or substituted. If I update the image with jpeg or png files, the image is correctly updated, ...
fabioferrero's user avatar
0 votes
2 answers
869 views

I am working on a local Composer based installation of TYPO3 v12.4 (I cannot update to v13) and have installed the extension 'plan2net/webp' to convert all of my images to .webp-format. But for some ...
Loreen T.'s user avatar
2 votes
1 answer
256 views

I can't believe this question has not been asked or that no information seems to be available on the web given that many of the big names are pushing new formats as being the way to go. Scenario: I am ...
Learningstuffhopefully's user avatar
0 votes
1 answer
798 views

I want to upload animated webp files (animation in WebP format instead of GIF.) not like traditional gif file because it is much more compact in size. Although I found a way to upload webp images and ...
Tushar sahu's user avatar
0 votes
0 answers
377 views

I used cwebp for converting my images to webp with this command: cwebp /Temp/Exmaple.jpg -o /Temp/Converted.webp some of images captured with phone camera have meta data of orientation, in converting ...
Ali Radan's user avatar
  • 185
0 votes
1 answer
443 views

I am writing a program in python that batch converts animated WebP files to GIFs but i am running into an issue where i cannot determine the framerate of the original file as i PIL wont return the ...
AshOverflow's user avatar
0 votes
1 answer
622 views

I have a blazor web assembly project. In images folder I have a mixture of jpg and webp images. When I publish the client to Azure all of the jpg images work fine and all of the webp images do not. ...
SESruss's user avatar
0 votes
0 answers
320 views

Does anybody of you know if there is something happening when changing the format of an image to webp? We have the situation here that it looses colour when being converted from jpg or png to webp. We ...
Klinger's user avatar
  • 75
1 vote
1 answer
366 views

On September 11th, 2023, a vulnerability was assigned CVE-2023-4863, the bug was found to be in the WebP Codec image rendering library (libwebp). The WebP Codec library is a library used to encode and ...
FiveDollarMilkshake's user avatar
0 votes
1 answer
451 views

Does WKWebView support WebP images? If so, how can I enable this? I have only found old questions that stated that it is not possible, however since iOS 14 Safari should have support for WebP. My use ...
eja08's user avatar
  • 4,890
1 vote
0 answers
181 views

An animated webp in Nextjs Image Component does not clean up frames after they've been rendered (resulting in all frames being shown by the end of the animation). Seems doubtful that the bug is with ...
Kenzo's user avatar
  • 406
2 votes
1 answer
311 views

import numpy as np from PIL import Image I have a numpy array res: res = \ np.array([[[ 1, 142, 68], [ 1, 142, 74]], [[ 1, 142, 70], [ 1, 142, 77]], ...
zabop's user avatar
  • 8,112
3 votes
0 answers
418 views

[Deployed via nextjs 13 & vercel] I have an animated webp (great reduction in size relative to the APNG). It's supposed to show only one frame at a time, out of a series of frames used to animate ...
Kenzo's user avatar
  • 406

1
2 3 4 5
16