API参考
风格迁移

风格转换

Action ApplyReferenceStyle

简介

此接口将基于参考图的风格重新绘制原始图片,以达到转换风格的效果。

请求

参数名类型描述信息必填
ActionString对应的 API 指令名称
PublicKeyString用户公钥,可从 PICPIK用户中心 (opens in a new tab) 获取
SignatureString根据公钥及 API 指令生成的用户签名,参见 签名算法
request_uuidString请求uuid,采用uuid生成方式随机生成,可用于管理您业务和客户的请求
参数名类型描述信息必填
MainModelModel主模型
SubModelList[]Model子模型列表,包含LoRA、Embedding和HyperNetwork
PositivePrompts[]String希望在画面中出现的内容描述
NegativePrompts[]String不希望在画面中出现的内容描述
TranslatePromptsBool是否将内容描述翻译成英文,支持的语言列表见此处。默认值:true
SeedInt种子编号(-1~2147483647),-1代表随机种子,默认值:-1
WidthInt图片宽度(64~2560),默认值:1024
HeightInt图片高度(64~2560),默认值:1024
BatchSizeInt批量生图的数量(1~16),默认值:1
UseMainModelVAEBool是否使用主模型自带的编解码器,默认值:false
参数名类型描述信息必填
RawImageIndexInt原始图片在ImageList中的索引编号,从0开始
StyleImageIndexInt风格参考图片在ImageList中的索引编号,从0开始
StyleReferStrengthFloat风格参考图的参考强度(0~1)。步长:0.01,默认值:0.5
ImageList[]Base64Base64编码的图片列表

复杂数据类型说明

Model

字段名类型描述信息必填
NameString模型名称
ModelCodeString模型编码
IsOfficialBool是否为官方模型
TriggerWordList[]String触发词列表(仅模型为lora时生效)
InferenceParamsInferenceParams推理用的参数

请求示例

{
    "Action": "ApplyReferenceStyle",
    "MainModel": {
      	"ModelCode"  : "PICPIK Interior Design"
    },
    "PositivePrompts": ["a apple"],
    "NegativePrompts": [],
    "TranslatePrompts": true,
    "RawImageIndex": 0,
    "StyleImageIndex": 1,
    "StyleReferStrength": 0.5,
    "Seed": -1,
    "Width": 1024,
    "Height": 1024,
    "BatchSize": 1,
    "UseMainModelVAE": true,
    "ImageList": ["imagebase64","imagebase64"]
}

响应

字段名类型描述信息必填
RetCodeInt返回状态码,为 0 则为成功返回,非 0 为失败
ActionString操作指令名称
MessageString返回错误消息,当 RetCode 非 0 时提供详细的描述信息
request_uuidString返回请求时填写的uuid
参数名类型描述信息必填
TaskUIDString任务UID,用于查询任务详情与获取结果

响应示例

{
	"Action": "ApplyReferenceStyle",
	"RetCode": 0,
	"Message": "",
	"request_uuid": "8482d350-04f9-421b-817b-1d98b3a4dcfa",
	"TaskUID": "cktlm6lrh4xxx8ng9nf0"
}