@thi.ng/imago
Version:
JSON & API-based declarative and extensible image processing trees/pipelines
27 lines (26 loc) • 393 B
JavaScript
const GRAVITY_POSITION = {
c: "center",
e: "right",
n: "top",
ne: "right top",
nw: "left top",
s: "bottom",
se: "right bottom",
sw: "left bottom",
w: "left"
};
const GRAVITY_MAP = {
n: "north",
ne: "northeast",
se: "southeast",
s: "south",
sw: "southwest",
w: "west",
nw: "northwest",
e: "east",
c: "center"
};
export {
GRAVITY_MAP,
GRAVITY_POSITION
};