The active areas will be included in the exported image. The area dimensions must be fully specified (it doesn't work if you only specify "left" but not "width" or "right").
If you only want to include the areas in the exported image you can add them using onBeforeEventExport event:
dp.onBeforeEventExport = args => {
args.areas = [
{ left: 0, top: 0, width: 15, height: 15, text: "A"},
{ left: 0, right: 0, top: 0, bottom: 0, text: "B", horizontalAlignment: "center", verticalAlignment: "bottom"},
{ right: 0, top: 0, width: 15, height: 15, text: "C"},
];
};