Using Parentheses in Command.make Arguments

Hi! I'd like to run a cli with parenthesis in the arguments, like convert 6.png \( -size 300x100 canvas:none -gravity center -pointsize 24 -fill black -annotate 0 "Centered Text" \) -gravity northwest -geometry +00+150 -composite 6.12.png
I can't manage to do it with Command.make. I tried this and the command runs but it does not seem to take into account the parenthesis:
const cmd = Command.make(
    `convert`,
    '6.png',
    '(',
    '-size',
    '300x100',
    'canvas:none',
    '-gravity',
    'center',
    '-pointsize',
    '24',
    '-fill',
    'blue',
    '-annotate',
    '0',
    '"Centered Text"',
    ')',
    '-gravity',
    'northwest',
    '-geometry',
    '+0+150',
    '6.12.png',
  );

Am I missing something?
Was this page helpful?