https://issues.apache.org/bugzilla/show_bug.cgi?id=47697

           Summary: Incorrect cell colors.
           Product: POI
           Version: 3.5-dev
          Platform: PC
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HSSF
        AssignedTo: [email protected]
        ReportedBy: [email protected]


--- Comment #0 from Thang Nguyen <[email protected]> 2009-08-16 
21:19:32 PDT ---
Created an attachment (id=24141)
this is the file to show affter using poi 3.5-dev write to new files.

Hi,

I want to ask you about the cell color on poi 3.5-dev, this is my function to
use for this solution.

on input file I filled a cell with color RBG:  (221, 217, 195) and I run main
method co create CellStyle but file output the color display yellow color (
255,255,152) not the same with input file, Don't  clear the reason please help
me.

Thanks.

public static void main(String[] args) throws Exception {

        String file = "files\\Color\\color2.xls"; (file input)
        String newFile = file + "_new.xls"; (file output)

        HSSFWorkbook wb = new HSSFWorkbook(new FileInputStream(file));
                //(create new style for new file)
        HSSFCellStyle style = wb.createCellStyle(); 

        wb.write(new FileOutputStream(newFile));

}

Please see details on attach files.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to