💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
Thumbnailator 和 hutool 都能弄文字和图片水印 hutool 公司的项目已经引入了, 直接就用这个了 文档加水印参考 https://www.jianshu.com/p/911d504193cb 1. Thumbnailator https://blog.csdn.net/Sunshine_zjh/article/details/112989016 2. hutool ~~~ // 水印图片放在 resources 下面 Resource resource = new ClassPathResource("static/img/logo.png"); ImgUtil.pressImage( FileUtil.file(imageUrl), // 图片位置 FileUtil.file(imageUrlLogo), // 生成的带水印图片保存位置 ImgUtil.read(resource.getFile()), //水印图片 290, //x坐标修正值。 默认在中间,偏移量相对于中间偏移 -260, //y坐标修正值。 默认在中间,偏移量相对于中间偏移 1f // 透明度 ); ~~~