我试图制作一个读取图像的程序。在 MS excel 中绘制图像后,但每个单元格都是像这里一样的单个像素。我想我很安静,但我看不出它不会给单元格着色的问题,有人可以帮我吗?
这是您可以根据需要免费使用的代码。
public class Engine {
ArrayList<Color> arr = new ArrayList<Color>();
private int xx;
private int yy;
FileOutputStream out;
HSSFSheet sheet;
HSSFWorkbook wb;
public void process() throws AWTException, IOException{
wb = new HSSFWorkbook();
sheet = wb.createSheet();
wb.setActiveSheet(0);
BufferedImage img = null;
try {
img = ImageIO.read(new File("res/images.jpg"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("img file not found");
}
for(int x=0;x<img.getWidth();x++){
xx++;
for(int y=0;y<img.getHeight();y++){
yy++;
int rgb = img.getRGB(x, y);
Color c = new Color(rgb);
printPixelARGB(rgb);
arr.add(c);
System.out.println("x: "+ x + " y:" + y +" color: " + c);
}}
out = new FileOutputStream("pic.xls");
wb.write(out);
out.close();
}
public void printPixelARGB(int pixel) {
int alpha = (pixel >> 24) & 0xff;
int red = (pixel >> 16) & 0xff;
int green = (pixel >> 8) & 0xff;
int blue = (pixel) & 0xff;
HSSFPalette palette = wb.getCustomPalette();
HSSFCellStyle style = wb.createCellStyle();
HSSFRow row = sheet.createRow((short) yy);
HSSFCell cell = row.createCell((short) xx);
cell.setCellValue(yy);
style.setFillForegroundColor(HSSFColor.LIME.index);
style.setFillBackgroundColor(HSSFColor.LIME.index);
palette.setColorAtIndex(HSSFColor.LIME.index, (byte) red, (byte) green, (byte) blue);
cell.setCellStyle(style);
}
}