API | 操作描述 |
图片高级压缩可以更加高效地将图片转换为 TPG 或 HEIF 等高压缩比格式,有效降低图片传输链路及加载耗时,降低带宽及流量成本 |
// 将原图转换为 TPG 格式name := "test.png"filepath := "test.tpg"_, err := c.CI.GetToFile(context.Background(), name, filepath, "imageMogr2/format/tpg", nil)if err != nil {// ERROR}// 将原图转换为 HEIF 格式filepath = "test.heif"_, err = c.CI.GetToFile(context.Background(), name, filepath, "imageMogr2/format/heif", nil)if err != nil {// ERROR}
本页内容是否解决了您的问题?