誰でもコードの問題点を見つけることができますか?
$workbook = new java("org.apache.poi.hssf.usermodel.HSSFWorkbook");
$cellStyle = $workbook->createCellStyle();
$palette = $this->workbook->getCustomPalette();
$palette->setColorAtIndex(0x40, 0, 102, 204);
$backGroundColor = $palette->getColor(0x40);
$cellStyle->setFillForegroundColor($backGroundColor->getIndex());
...
$cell->setCellStyle($cellStyle);
このコードは背景色を変更しません
とりあえず
$cellStyle->setFillForegroundColor(0xc); // 0xc is index of blue
$cellStyle->setFillBackgroundColor(0xc);
どちらも機能しません