Sergei Aleksandrovich

Results 286 comments of Sergei Aleksandrovich

Hi @monegim! From the docs: > If the source URL contains a query string or @, you'll need to escape it Basically, you need to replace `@` in the source...

Hey @bwhli! It doesn't look like this should be implemented on the imgproxy's level. Also, I can't find anything about SIGTERM handling in the blog post you've shared

Hey @schonert! TL;DR: it's better to have multiple small instances than a single big one. The rule of thumb is 2 CPUs per instance and 2 workers (concurrency) per CPU....

Hi @im-vignesh, > ``, `` tags in SVGs are not being rendered in PNG These elements have the `feDropShadow` filter applied which is not supported by old versions of librsvg....

The `latest` build contains the fix for rendering of GIFs embedded in SVG. > Is there any other format I can try converting to, so that I will be retaining...

Hey @SPAHI4! Could you provide the problematic sample? Can't reproduce this with my AVIFs :(

Never mind, I found one. I'll look at what I can do with this.

The thing is that such AVIFs contain color profiles in the CiCp (aka NCLX) format. Such profiles don't actually contain color points, curves, matrices, etc, but contain IDs of color...

Hey @SmaugPool! I don't think APNG makes much sense nowadays, especially in the context of imgproxy: 1. We have WebP. It's highly effective, widely supported, and has a lossless mode....

Hey @kartikrao! We have [style](https://docs.imgproxy.net/generating_the_url?id=style) option that was initially added exactly for SVG coloring. You can color your SVG like this: `.../style:KiB7ZmlsbDogI2YwMCAhaW1wb3J0YW50fQ/...`. `KiB7ZmlsbDogI2YwMCAhaW1wb3J0YW50fQ` is base64-encoded `* {fill: #f00 !important}` >...