Pixellena Light API 没有 return 优化图像
Pixellena Light API does not return optimized image
运行 Pixellena 之光 API 我收到类似于 Not possible to create a webp that has a smaller size and also preserves quality of the original file
的消息,但我的通话没有 return 图像。我该如何解决这个问题才能获得优化后的图像?
这是个好问题!它在 Pixellena FAQ page, but actually it does not give any solution there. There is a solution though. You can use the Lux API 上解释,并设置 max_overhead
参数以获得优化图像。使用此参数集,您可以获得比原始图像大乘以此参数值的优化图像,如他们的文档中所述。例如 'original image size: 10KB, max_overhead: 10, you can get an optimized image till 100KB'
。当然也可以小于100KB。事实上 API 会找到较小的那个。
的
请参阅下面如何为此设置 adjustments
:
{
"encoder": {
"max_overhead": 10
}
}
请试一试。希望对您有所帮助。
运行 Pixellena 之光 API 我收到类似于 Not possible to create a webp that has a smaller size and also preserves quality of the original file
的消息,但我的通话没有 return 图像。我该如何解决这个问题才能获得优化后的图像?
这是个好问题!它在 Pixellena FAQ page, but actually it does not give any solution there. There is a solution though. You can use the Lux API 上解释,并设置 max_overhead
参数以获得优化图像。使用此参数集,您可以获得比原始图像大乘以此参数值的优化图像,如他们的文档中所述。例如 'original image size: 10KB, max_overhead: 10, you can get an optimized image till 100KB'
。当然也可以小于100KB。事实上 API 会找到较小的那个。
的
请参阅下面如何为此设置 adjustments
:
{
"encoder": {
"max_overhead": 10
}
}
请试一试。希望对您有所帮助。