Spring Boot 对接文心一言,实现ai抠图实例

上篇文章:Spring Boot 对接文心一言 讲述了在spring boot 项目中如何集成文心一言。现在我们来做个实例,实现AI抠图。

文心一言的抠图功能通常需要通过调用文心一言的API来实现。在Spring Boot项目中,你可以通过RestTemplate或者WebClient来发起HTTP请求调用文心一言的API。

实现文心一言抠图功能:

@Service
public class AIService {
 
    private final RestTemplate restTemplate;
     @Value("${wenxin.api-key}")
    private String apiKey;
    @Value("${wxyy.secret-key}")
    private String secretKey;
    @Value("${wenxin.api-url}")
    private String apiUrl;
 
    public AIService(RestTemplate restTemplate) {
        this.restTemplate = restTemplate;
    }
 
    public byte[] doImageStyling(byte[] imageData) throws IOException {
        HttpHeaders headers= new HttpHeaders();
        headers.set("Content-Type", "application/json");
        headers.set("Authorization", "Bearer " + apiKey);
        // 创建请求体,这里以MultipartFile为例
        MultiValueMap<String, Object> body = new LinkedMultiValueMap<>();
        body.add("image", new ByteArrayResource(imageData) {
            @Override
            public String getFilename() {
                return "image.jpg"; // 给文件命名
            }
        });
 
        // 发起POST请求到文心一言的API
        ResponseEntity<byte[]> response = restTemplate.exchange(
                apiUrl,
                HttpMethod.POST,
                new HttpEntity<>(body),
                byte[].class
        );
        // 返回处理后的图片数据
        return response.getBody();
    }
}

在Controller中调用AIService:

@RestController
public class ImageStylingController {
 
    private final AIService aiService;
 
    public ImageStylingController(AIService aiService) {
        this.aiService = aiService;
    }
 
    @PostMapping("/image/stylize")
    public ResponseEntity<byte[]> stylizeImage(@RequestParam("image") MultipartFile image) throws IOException {
        byte[] stylizedImage = aiService.doImageStyling(image.getBytes());
        return ResponseEntity.ok().body(stylizedImage);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

cesske

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值