插件开发工具库,推荐依赖该工具库。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
585 B

package com.fanruan.api.util;
import com.fanruan.api.report.PaintKit;
import com.fr.base.Style;
import org.junit.Assert;
import org.junit.Test;
import java.awt.*;
import java.awt.image.BufferedImage;
public class PaintKitTest {
@Test
public void value2Image() {
BufferedImage bi = new BufferedImage(40, 50, BufferedImage.TYPE_BYTE_GRAY);
Style style = Style.getInstance();
Image image = PaintKit.value2Image(bi, 1, style, 30, 50);
Assert.assertEquals(30, image.getWidth(null));
Assert.assertEquals(50, image.getHeight(null));
}
}