2013-09-22 7 views
1

코드에 문제가있는 사람을 찾을 수 있습니까? 이 코드는 어쨌든JavaBridge가있는 PHP : POI 설정 사용자 정의 배경색

$cellStyle->setFillForegroundColor(0xc); // 0xc is index of blue 
    $cellStyle->setFillBackgroundColor(0xc); 

이 작동하지 않는 배경 색상

을 변경하지 않습니다

$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); 

어느 쪽도하지

답변