[Libreoffice-commits] core.git: tools/inc tools/source

Luke Deller luke at deller.id.au
Mon Mar 11 07:55:18 PDT 2013


 tools/inc/tools/color.hxx      |    4 ++--
 tools/source/generic/color.cxx |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 77e21bb36a2cdaaa0f4049dee0d45c5b2325c6e9
Author: Luke Deller <luke at deller.id.au>
Date:   Sat Mar 9 01:26:56 2013 +1100

    Change definition of "dark" colour for fdo#61993
    
    - Increase the threshold for "dark" colours from Luminosity<=38 to
      Luminosity<=60.
    
      This makes LibreOffice align more closely with MS Word when
      considering whether "automatic" font colour should be black or white,
      a decision that is based on whether the background colour is "dark".
    
      Beware that this also affects other areas.
    
    - Fix the coefficients for GetLuminosity which appeared to be off
      by one according to the "Rec 601" coefficients for Luma quoted at
      http://en.wikipedia.org/wiki/Luma_%28video%29
    
    Change-Id: I0af1f77909713e3db5ea8ee98456146569679594
    Reviewed-on: https://gerrit.libreoffice.org/2601
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/tools/inc/tools/color.hxx b/tools/inc/tools/color.hxx
index 823f341..911088b 100644
--- a/tools/inc/tools/color.hxx
+++ b/tools/inc/tools/color.hxx
@@ -198,9 +198,9 @@ inline sal_Bool Color::IsRGBEqual( const Color& rColor ) const
 
 inline sal_uInt8 Color::GetLuminance() const
 {
-    return( (sal_uInt8) ( ( COLORDATA_BLUE( mnColor ) * 28UL +
+    return( (sal_uInt8) ( ( COLORDATA_BLUE( mnColor ) * 29UL +
                         COLORDATA_GREEN( mnColor ) * 151UL +
-                        COLORDATA_RED( mnColor ) * 77UL ) >> 8UL ) );
+                        COLORDATA_RED( mnColor ) * 76UL ) >> 8UL ) );
 }
 
 inline void Color::Merge( const Color& rMergeColor, sal_uInt8 cTransparency )
diff --git a/tools/source/generic/color.cxx b/tools/source/generic/color.cxx
index 33e6aff..a6a8084 100644
--- a/tools/source/generic/color.cxx
+++ b/tools/source/generic/color.cxx
@@ -102,7 +102,7 @@ void Color::Invert()
 
 sal_Bool Color::IsDark() const
 {
-    return GetLuminance() <= 38;
+    return GetLuminance() <= 60;
 }
 
 sal_Bool Color::IsBright() const


More information about the Libreoffice-commits mailing list