volcengine / volc-sdk-php

Apache License 2.0
12 stars 7 forks source link

人像编辑功能可以扩展一下吗 #10

Open echome123 opened 1 year ago

echome123 commented 1 year ago

目前文档列表人像人体功能特别多,但是SDK里面只有照片转卡通等一小部分,其他的功能可以再扩展一下吗:

`protected $apiList = [ 'JPCartoon' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'JPCartoon', 'Version' => '2020-08-26', ], ], ], 'FaceSwap' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'FaceSwap', 'Version' => '2020-08-26', ], ], ], 'HumanSegment' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'HumanSegment', 'Version' => '2020-08-26', ], ], ], 'GeneralSegment' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'GeneralSegment', 'Version' => '2020-08-26', ], ], ], 'EnhancePhoto' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'EnhancePhoto', 'Version' => '2020-08-26', ], ], ], 'ConvertPhoto' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'ConvertPhoto', 'Version' => '2020-08-26', ], ], ], 'OCRNormal' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'OCRNormal', 'Version' => '2020-08-26', ], ], ], 'IDCard' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'IDCard', 'Version' => '2020-08-26', ], ], ], 'BankCard' => [ 'url' => '/', 'method' => 'post', 'config' => [ 'query' => [ 'Action' => 'BankCard', 'Version' => '2020-08-26', ], ], ],

];`
x-rush commented 1 year ago

图片 sdk中提供了 set和call方法,很方便的。

echome123 commented 1 year ago

sdk中提供了 set和call方法,很方便的。

谢谢,我看了一下我用的版本还没有,更新之后使用这两个方法确实好用。