Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add linear gradient support #1295

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 38 additions & 6 deletions demos/modules/demo_shape.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,36 @@ function genSlide01(pptx) {
slide.addShape(pptx.shapes.RIGHT_TRIANGLE, {
x: 0.4,
y: 4.3,
w: 6.0,
w: 5.0,
h: 3.0,
fill: { color: pptx.colors.ACCENT5 },
line: { color: pptx.colors.ACCENT1, width: 3 },
shapeName: "First Right Triangle",
});
slide.addShape(pptx.shapes.RIGHT_TRIANGLE, {
x: 7.0,
x: 8.0,
y: 4.3,
w: 6.0,
w: 5.0,
h: 3.0,
fill: { color: pptx.colors.ACCENT5 },
line: { color: pptx.colors.ACCENT1, width: 2 },
flipH: true,
});
slide.addShape(pptx.shapes.RECTANGLE, {
x: 5.1,
y: 6,
w: 3.0,
h: 1,
fill: {
type: "linearGradient",
stops: [
{ position: 0, color: '000000', transparency: 10 },
{ position: 100, color: '333333', transparency: 50 },
],
angle: 45,
scaled: 1,
},
});
}

/**
Expand Down Expand Up @@ -253,21 +268,38 @@ function genSlide02(pptx) {
align: "center",
x: 0.4,
y: 4.3,
w: 6,
w: 5,
h: 3,
fill: { color: pptx.colors.ACCENT5 },
line: { color: "696969", width: 3 },
});
slide.addText("HYPERLINK-SHAPE", {
shape: pptx.shapes.RIGHT_TRIANGLE,
align: "center",
x: 7.0,
x: 8.0,
y: 4.3,
w: 6,
w: 5,
h: 3,
fill: { color: pptx.colors.ACCENT5 },
line: { color: "696969", width: 2 },
flipH: true,
hyperlink: { url: "https://github.com/gitbrent/pptxgenjs", tooltip: "Visit Homepage" },
});
slide.addText("LINEAR GRADIENT", {
shape: pptx.shapes.RECTANGLE,
align: "center",
x: 5.1,
y: 6,
w: 3.0,
h: 1,
fill: {
type: "linearGradient",
stops: [
{ position: 0, color: '000000', transparency: 10 },
{ position: 100, color: '333333', transparency: 50 },
],
angle: 45,
scaled: 1,
},
});
}
76 changes: 68 additions & 8 deletions src/core-interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface DataOrPathProps {
*/
data?: string
}
export interface BackgroundProps extends DataOrPathProps, ShapeFillProps {
export interface BackgroundProps extends DataOrPathProps, SolidShapeFillProps {
/**
* Color (hex format)
* @deprecated v3.6.0 - use `ShapeFillProps` instead
Expand Down Expand Up @@ -171,7 +171,67 @@ export interface ShadowProps {
rotateWithShape?: boolean
}
// used by: shape, table, text
export interface ShapeFillProps {
export interface GradientStop {
/**
* Position (percent)
* - range: 0-100
*/
position: number
/**
* Gradient stop color
* - `HexColor` or `ThemeColor`
* @example 'FF0000' // hex color (red)
* @example pptx.SchemeColor.text1 // Theme color (Text1)
*/
color: Color
/**
* Transparency (percent)
* - range: 0-100
* @default 0
*/
transparency?: number
}
interface BaseGradientShapeFillProps {
/**
* Gradient stops
* - Only used with linearGradient and pathGradient types
*/
stops: GradientStop[]
/**
* Rotate with shape
* @default true
*/
rotWithShape?: boolean
/**
* Tile rectangle
*/
tileRect?: { t?: number, r?: number, b?: number, l?: number }
/**
* Gradient flip direction
* - Only used when tileRect is specified
* @default 'none'
*/
flip?: 'none' | 'x' | 'xy' | 'y'
}
export interface LinearGradientShapeFillProps extends BaseGradientShapeFillProps {
/**
* Linear gradient angle (degrees)
* - range: 0-359
* @default 0
*/
angle?: number
/**
* Scaled
* - `true` will scale the gradient with the object
* @default false
*/
scaled?: boolean
/**
* Fill type
*/
type: 'linearGradient'
}
export interface SolidShapeFillProps {
/**
* Fill color
* - `HexColor` or `ThemeColor`
Expand All @@ -198,7 +258,7 @@ export interface ShapeFillProps {
*/
alpha?: number
}
export interface ShapeLineProps extends ShapeFillProps {
export interface ShapeLineProps extends SolidShapeFillProps {
/**
* Line width (pt)
* @default 1
Expand Down Expand Up @@ -635,7 +695,7 @@ export interface ShapeProps extends PositionProps, ObjectNameProps {
* @example { color:'0088CC', transparency:50 } // hex color, 50% transparent
* @example { color:pptx.SchemeColor.accent1 } // Theme color Accent1
*/
fill?: ShapeFillProps
fill?: LinearGradientShapeFillProps | SolidShapeFillProps
/**
* Flip shape horizontally?
* @default false
Expand Down Expand Up @@ -832,7 +892,7 @@ export interface TableCellProps extends TextBaseProps {
* @example { color:'0088CC', transparency:50 } // hex color, 50% transparent
* @example { color:pptx.SchemeColor.accent1 } // theme color Accent1
*/
fill?: ShapeFillProps
fill?: LinearGradientShapeFillProps | SolidShapeFillProps
hyperlink?: HyperlinkProps
/**
* Cell margin (inches)
Expand Down Expand Up @@ -910,7 +970,7 @@ export interface TableProps extends PositionProps, TextBaseProps, ObjectNameProp
* @example { color:'0088CC', transparency:50 } // hex color, 50% transparent
* @example { color:pptx.SchemeColor.accent1 } // theme color Accent1
*/
fill?: ShapeFillProps
fill?: LinearGradientShapeFillProps | SolidShapeFillProps
/**
* Cell margin (inches)
* - affects all table cells, is superceded by cell options
Expand Down Expand Up @@ -1017,7 +1077,7 @@ export interface TextPropsOptions extends PositionProps, DataOrPathProps, TextBa
* @example { color:'0088CC', transparency:50 } // hex color, 50% transparent
* @example { color:pptx.SchemeColor.accent1 } // theme color Accent1
*/
fill?: ShapeFillProps
fill?: LinearGradientShapeFillProps | SolidShapeFillProps
/**
* Flip shape horizontally?
* @default false
Expand Down Expand Up @@ -1221,7 +1281,7 @@ export interface IChartPropsFillLine {
* @example fill: {color: pptx.SchemeColor.background2} // Theme color value
* @example fill: {transparency: 50} // 50% transparency
*/
fill?: ShapeFillProps
fill?: LinearGradientShapeFillProps | SolidShapeFillProps
}
export interface IChartAreaProps extends IChartPropsFillLine {
/**
Expand Down
8 changes: 6 additions & 2 deletions src/gen-charts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,9 @@ export function makeXmlCharts (rel: ISlideRelChart): string {
strXml += ' <c:spPr>'

// OPTION: Fill
strXml += rel.opts.plotArea.fill?.color ? genXmlColorSelection(rel.opts.plotArea.fill) : '<a:noFill/>'
strXml += rel.opts.plotArea.fill.type === 'solid' || rel.opts.plotArea.fill.type === 'linearGradient'
? genXmlColorSelection(rel.opts.plotArea.fill)
: '<a:noFill/>'

// OPTION: Border
strXml += rel.opts.plotArea.border
Expand Down Expand Up @@ -737,7 +739,9 @@ export function makeXmlCharts (rel: ISlideRelChart): string {

// D: CHARTSPACE SHAPE PROPS
strXml += '<c:spPr>'
strXml += rel.opts.chartArea.fill?.color ? genXmlColorSelection(rel.opts.chartArea.fill) : '<a:noFill/>'
strXml += rel.opts.chartArea.fill.type === 'solid' || rel.opts.chartArea.fill.type === 'linearGradient'
? genXmlColorSelection(rel.opts.chartArea.fill)
: '<a:noFill/>'
strXml += rel.opts.chartArea.border
? `<a:ln w="${valToPts(rel.opts.chartArea.border.pt)}" cap="flat">${genXmlColorSelection(rel.opts.chartArea.border.color)}</a:ln>`
: '<a:ln><a:noFill/></a:ln>'
Expand Down
14 changes: 11 additions & 3 deletions src/gen-objects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import {
ShapeProps,
SlideLayout,
SlideMasterProps,
SolidShapeFillProps,
TableCell,
TableProps,
TableRow,
Expand Down Expand Up @@ -316,7 +317,14 @@ export function addChartDefinition (target: PresSlide, type: CHART_NAME | IChart
if (options.plotArea.border && (!options.plotArea.border.color || typeof options.plotArea.border.color !== 'string')) { options.plotArea.border.color = DEF_CHART_BORDER.color }
if (options.border) options.plotArea.border = options.border // @deprecated [[remove in v4.0]]
options.plotArea.fill = options.plotArea.fill || { color: null, transparency: null }
if (options.fill) options.plotArea.fill.color = options.fill // @deprecated [[remove in v4.0]]
if (options.fill) {
const fill: SolidShapeFillProps = {
type: 'solid',
color: options.fill, // @deprecated [[remove in v4.0]]
transparency: null,
}
options.plotArea.fill = fill
}
//
options.chartArea = options.chartArea || {}
options.chartArea.border = options.chartArea.border && typeof options.chartArea.border === 'object' ? options.chartArea.border : null
Expand Down Expand Up @@ -897,8 +905,8 @@ export function addTableDefinition (
// STEP 4: Convert units to EMU now (we use different logic in makeSlide->table - smartCalc is not used)
if (opt.x && opt.x < 20) opt.x = inch2Emu(opt.x)
if (opt.y && opt.y < 20) opt.y = inch2Emu(opt.y)
if (opt.w && opt.w < 20) opt.w = inch2Emu(opt.w)
if (opt.h && opt.h < 20) opt.h = inch2Emu(opt.h)
if (opt.w && typeof opt.w === 'number' && opt.w < 20) opt.w = inch2Emu(opt.w)
if (opt.h && typeof opt.h === 'number' && opt.h < 20) opt.h = inch2Emu(opt.h)

// STEP 5: Loop over cells: transform each to ITableCell; check to see whether to unset `autoPage` while here
arrRows.forEach(row => {
Expand Down
94 changes: 75 additions & 19 deletions src/gen-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

import { EMU, REGEX_HEX_COLOR, DEF_FONT_COLOR, ONEPT, SchemeColor, SCHEME_COLORS } from './core-enums'
import { PresLayout, TextGlowProps, PresSlide, ShapeFillProps, Color, ShapeLineProps, Coord, ShadowProps } from './core-interfaces'
import { PresLayout, TextGlowProps, PresSlide, SolidShapeFillProps, Color, ShapeLineProps, Coord, ShadowProps, LinearGradientShapeFillProps } from './core-interfaces'

/**
* Translates any type of `x`/`y`/`w`/`h` prop to EMU
Expand Down Expand Up @@ -185,29 +185,85 @@ export function createGlowElement (options: TextGlowProps, defaults: TextGlowPro
* @param {Color | ShapeFillProps | ShapeLineProps} props fill props
* @returns XML string
*/
export function genXmlColorSelection (props: Color | ShapeFillProps | ShapeLineProps): string {
let fillType = 'solid'
let colorVal = ''
let internalElements = ''
export function genXmlColorSelection (props: Color | SolidShapeFillProps | ShapeLineProps | LinearGradientShapeFillProps): string {
if (!props) {
return ''
}

let outText = ''

if (props) {
if (typeof props === 'string') colorVal = props
else {
if (props.type) fillType = props.type
if (props.color) colorVal = props.color
if (props.alpha) internalElements += `<a:alpha val="${Math.round((100 - props.alpha) * 1000)}"/>` // DEPRECATED: @deprecated v3.3.0
if (props.transparency) internalElements += `<a:alpha val="${Math.round((100 - props.transparency) * 1000)}"/>`
let safeProps: SolidShapeFillProps | ShapeLineProps | LinearGradientShapeFillProps = {}
if (typeof props === 'string') {
safeProps.type = 'solid'
safeProps.color = props
} else {
safeProps = props
safeProps.type = props.type ?? 'solid'
}

switch (safeProps.type) {
case 'solid': {
const transparency = safeProps.transparency ?? safeProps.alpha
const internalElements = transparency
? `<a:alpha val="${Math.round((100 - transparency) * 1000)}"/>`
: undefined
outText += `<a:solidFill>${createColorElement(safeProps.color ?? '', internalElements)}</a:solidFill>`
break
}

switch (fillType) {
case 'solid':
outText += `<a:solidFill>${createColorElement(colorVal, internalElements)}</a:solidFill>`
break
default: // @note need a statement as having only "break" is removed by rollup, then tiggers "no-default" js-linter
outText += ''
break
case 'linearGradient': {
const stops = safeProps.stops ?? []
const rotWithShape = safeProps.rotWithShape ?? true
const flip = safeProps.flip ?? 'none'

outText += `<a:gradFill rotWithShape="${rotWithShape ? 1 : 0}" flip="${flip}">`

if (stops.length > 0) {
outText += '<a:gsLst>'

outText += stops.map(
({ position, color: stopColor, transparency }) => {
const stopInternalElements = transparency
? `<a:alpha val="${Math.round((100 - transparency) * 1000)}"/>`
: ''

return `<a:gs pos="${position * 1000}">${createColorElement(stopColor, stopInternalElements)}</a:gs>`
}
).join('')

outText += '</a:gsLst>'
}

if (safeProps.angle) {
const ang = convertRotationDegrees(safeProps.angle)
const scaled = safeProps.scaled ?? false
outText += `<a:lin ang="${ang}" scaled="${scaled ? 1 : 0}"/>`
}

if (
safeProps.tileRect &&
(
safeProps.tileRect.t ||
safeProps.tileRect.r ||
safeProps.tileRect.b ||
safeProps.tileRect.l
)
) {
const tAttr = safeProps.tileRect.t ? `t="${safeProps.tileRect.t * 1000}"` : ''
const rAttr = safeProps.tileRect.r ? `r="${safeProps.tileRect.r * 1000}"` : ''
const bAttr = safeProps.tileRect.b ? `b="${safeProps.tileRect.b * 1000}"` : ''
const lAttr = safeProps.tileRect.l ? `l="${safeProps.tileRect.l * 1000}"` : ''

outText += `<a:tileRect ${tAttr} ${rAttr} ${bAttr} ${lAttr}/>`
}

outText += '</a:gradFill>'
break
}

default: // @note need a statement as having only "break" is removed by rollup, then tiggers "no-default" js-linter
outText += ''
break
}

return outText
Expand Down
Loading