增加默认色差方法

This commit is contained in:
Looly 2024-08-09 12:08:13 +08:00
parent d75c13a12f
commit cfd60e564e
2 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@
* 【mail 】 MailAccount增加自定义参数支持issue#3687@Github
* 【mail 】 增加文字颜色与背景颜色色差设置pr#1252@gitee
* 【mail 】 XmlUtil增加xmlToBean重载支持CopyOptions参数issue#IAISBB@gitee
* 【core 】 增加默认色差方法pr#1257@gitee
### 🐞Bug修复
* 【core 】 修复因RFC3986理解有误导致的UrlPath处理冒号转义问题issue#IAAE88@Gitee

View File

@ -95,7 +95,7 @@ public class GraphicsUtil {
* @param compareColor 用于比对的颜色
* @param minColorDistance 随机生成的颜色与对比颜色的最小色差小于此值则重新生成颜色
* @return 画笔对象
* @since 4.5.10
* @since 5.8.30
*/
public static Graphics drawStringColourful(Graphics g, String str, Font font, int width, int height, Color compareColor, int minColorDistance) {
return drawString(g, str, font, null, width, height, compareColor, minColorDistance);
@ -130,7 +130,7 @@ public class GraphicsUtil {
* @param compareColor 用于比对的颜色
* @param minColorDistance 随机生成的颜色与对比颜色的最小色差小于此值则重新生成颜色
* @return 画笔对象
* @since 4.5.10
* @since 5.8.30
*/
public static Graphics drawString(Graphics g, String str, Font font, Color color, int width, int height, Color compareColor, int minColorDistance) {
// 抗锯齿