You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To set the textColor, we expect RGB format but where as getTextColor return in hex code format. Due to this it is not so great to work with dynamic color/text.
Actual: doc.getTextColor - hex code
Expect: doc.getTextColor - Array [r,g,b,a]
May be introduce a optional param to getTextColor
hexCode = 0
rgbCode = 1
default to 0 doc.getTextColor(1)
The text was updated successfully, but these errors were encountered:
Description:
To set the textColor, we expect RGB format but where as getTextColor return in hex code format. Due to this it is not so great to work with dynamic color/text.
Actual:
doc.getTextColor
- hex codeExpect:
doc.getTextColor
- Array [r,g,b,a]May be introduce a optional param to getTextColor
hexCode = 0
rgbCode = 1
default to 0
doc.getTextColor(1)
The text was updated successfully, but these errors were encountered: