CenterForOpenScience / pydocx

An extendable docx file format parser and converter
Other
183 stars 55 forks source link

Add table cell background color #231

Open botzill opened 7 years ago

botzill commented 7 years ago

Related to #230.

Few notes about implementation. Currently we may have cases when cell background color is set to a dark color(like black). In Office this is handled automatically and they convert text into white(if there is not custom color set for text). I also tried to handle this case by checking the color brightness using this formula: http://alienryderflex.com/hsp.html. This way if we detect a dark color we convert text to custom white color.

botzill commented 7 years ago

@winhamwr Any chance you can take a look at this PR as well ?