-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnativescript-image-colors.android.ts
78 lines (66 loc) · 2.17 KB
/
nativescript-image-colors.android.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { ColorPalette, AndroidPalette } from './nativescript-image-colors.common';
import { Image } from 'tns-core-modules/ui/image';
import { Color } from 'tns-core-modules/color';
declare const android: any;
export class ImageColors {
public static getColorPalette(image: Image): ColorPalette {
let returnPalette: ColorPalette = {
color1: new Color('black'),
color2: new Color('black'),
color3: new Color('black'),
AndroidPalette: <any>{},
IosPalette: null
};
let drawable = image.android.getDrawable();
if (!drawable) {
return returnPalette;
}
let bmp = drawable.getBitmap();
if (!bmp) {
return returnPalette;
}
let Palette = new android.support.v7.graphics.Palette.from(bmp).generate();
if (Palette != null) {
let vibrantSwatch = Palette.getVibrantSwatch();
let darkVibrantSwatch = Palette.getDarkVibrantSwatch();
let lightVibrantSwatch = Palette.getLightVibrantSwatch();
let mutedSwatch = Palette.getMutedSwatch();
let darkMutedSwatch = Palette.getLightMutedSwatch();
let lightMutedSwatch = Palette.getDarkMutedSwatch();
returnPalette.AndroidPalette = <AndroidPalette>{
vibrant: this.getColor(vibrantSwatch),
vibrantDark: this.getColor(darkVibrantSwatch),
vibrantLight: this.getColor(lightVibrantSwatch),
muted: this.getColor(mutedSwatch),
mutedDark: this.getColor(darkMutedSwatch),
mutedLight: this.getColor(lightMutedSwatch),
}
if (vibrantSwatch) {
returnPalette.color1 = returnPalette.AndroidPalette.vibrant;
} else {
if (mutedSwatch)
returnPalette.color1 = returnPalette.AndroidPalette.muted
}
if (darkVibrantSwatch) {
returnPalette.color2 = returnPalette.AndroidPalette.vibrantDark
} else {
if (darkMutedSwatch)
returnPalette.color2 = returnPalette.AndroidPalette.mutedDark
}
if (lightVibrantSwatch) {
returnPalette.color3 = returnPalette.AndroidPalette.vibrantLight
} else {
if (lightMutedSwatch) {
returnPalette.color3 = returnPalette.AndroidPalette.mutedLight
}
}
}
return returnPalette;
}
private static getColor(color: any): Color {
if (color && color.getRgb()) {
return new Color(color.getRgb());
}
return null;
}
}