阅读本文,您可以获取 Go SDK 创意魔方的接口调用示例,实现快速开发。
调用接口前,请先完成 Go SDK 的安装及初始化操作。
本节为您介绍创意魔方相关接口的功能和调用示例。
您可以调用 GetImageStyleResult 接口使用创意魔方中预先创建好的样式 StyleId
,定义需要设置的要素与要素的取值 Params
,生成结果图,并获取结果图 URI。详细的参数说明可参见 GetImageStyleResult 接口文档。
接口调用示例如下所示。
package imagex_test import ( "context" "encoding/json" "fmt" "testing" "github.com/volcengine/volc-sdk-golang/base" imagex "github.com/volcengine/volc-sdk-golang/service/imagex/v2" ) func Test_GetImageStyleResult(t *testing.T) { instance := imagex.NewInstance() instance.SetCredential(base.Credentials{ AccessKeyID: "ak", SecretAccessKey: "sk", }) param := &imagex.GetImageStyleResultReq{ GetImageStyleResultQuery: &imagex.GetImageStyleResultQuery{}, GetImageStyleResultBody: &imagex.GetImageStyleResultBody{}, } resp, err := instance.GetImageStyleResult(context.Background(), param) if err != nil { fmt.Printf("error %v", err) } else { t, _ := json.Marshal(resp) fmt.Printf("success %v", string(t)) } }