MathNya

Results 114 comments of MathNya

@Aeradriel Thank you for contacting us. We will investigate the cause of the problem.

@Aeradriel Fixed issue. Please get the latest version and check it. To hide the sheet programmatically, do the following ```rust let path = std::path::Path::new("./tests/test_files/issue_217.xlsx"); let mut book = reader::xlsx::read(path).unwrap(); book.get_sheet_mut(&2)...

@Aeradriel Thank you for your report. We have checked and found it to be a bug. We will address it in the next update.

The latest version has been released. Please confirm that the problem has been fixed.

@jamninetyfive Thank you for contacting us. The image data is managed in a different location than the cell. You can get it with the following code. (I did not expect...

@jamninetyfive You can now retrieve the position. ```rust let img_list = book.get_sheet_by_name("Sheet1").unwrap().get_image_collection(); for img in img_list { dbg!(img.get_coordinate()); } ```

@jamninetyfive Is buffer/blob different from get_image_data()? If possible, a PR would be appreciated.

Fixed to make it easier to retrieve Image. ```rust // get image data. let img = book.get_sheet_by_name("Sheet1").unwrap().get_image("M17").unwrap(); // or let img_list = book.get_sheet_by_name("Sheet1").unwrap().get_image_collection(); // get Coordinate. assert_eq!(img.get_coordinate(), "M17"); assert_eq!(img.get_col(), &12);...

@taylorh140 Perhaps the following process can be used to obtain the color code. ```rust let book = umya_spreadsheet::reader::xlsx::read(path).unwrap(); let color = book.get_theme().get_theme_elements() .get_color_scheme() .get_color_map() .get(theme_index) ``` We will fix it...

@taylorh140 Thank you for your report. Perhaps there is a bug somewhere. We will investigate.