com.google.appengine.api.images.OutputSettings only has support for one setQuality parameter. This works for the RGB image quality but when you add an alpha channel it seems to always use lossless compression. So as soon as I add an alpha channel to a webp image the size explodes.
https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/images/OutputSettings When using the command line webP I can see there is an option to set quality on the alpha. MBProJack:Downloads jacques$ cwebp -q 50 -alpha_q 50 input.png -o out.webp There definitely should be support for setting the compression quality for the alpha channel. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
