mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
add text color generation based on luminance
This commit is contained in:
parent
d84ca511d4
commit
7cc940a16c
@ -1,6 +1,7 @@
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
import magic
|
import magic
|
||||||
|
import math
|
||||||
from django.utils.text import slugify
|
from django.utils.text import slugify
|
||||||
from rest_framework import serializers
|
from rest_framework import serializers
|
||||||
from rest_framework.fields import SerializerMethodField
|
from rest_framework.fields import SerializerMethodField
|
||||||
@ -140,6 +141,21 @@ class TagSerializerVersion1(MatchingModelSerializer):
|
|||||||
|
|
||||||
class TagSerializer(MatchingModelSerializer):
|
class TagSerializer(MatchingModelSerializer):
|
||||||
|
|
||||||
|
def get_text_color(self, obj):
|
||||||
|
if obj.color:
|
||||||
|
h = obj.color.lstrip('#')
|
||||||
|
rgb = tuple(int(h[i:i + 2], 16)/256 for i in (0, 2, 4))
|
||||||
|
luminance = math.sqrt(
|
||||||
|
0.299 * math.pow(rgb[0], 2) +
|
||||||
|
0.587 * math.pow(rgb[1], 2) +
|
||||||
|
0.114 * math.pow(rgb[2], 2)
|
||||||
|
)
|
||||||
|
return "#ffffff" if luminance < 0.5 else "#000000"
|
||||||
|
else:
|
||||||
|
return "#000000"
|
||||||
|
|
||||||
|
text_color = serializers.SerializerMethodField()
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Tag
|
model = Tag
|
||||||
fields = (
|
fields = (
|
||||||
@ -147,6 +163,7 @@ class TagSerializer(MatchingModelSerializer):
|
|||||||
"slug",
|
"slug",
|
||||||
"name",
|
"name",
|
||||||
"color",
|
"color",
|
||||||
|
"text_color",
|
||||||
"match",
|
"match",
|
||||||
"matching_algorithm",
|
"matching_algorithm",
|
||||||
"is_insensitive",
|
"is_insensitive",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user