Sorry I misread your question earlier. The extent method extents your image to the specified result. That means that if you want it to be 1200x629 you should specify that as the arguments for the extent method:
privatestaticvoid ForceLetterbox(MagickImage image) { image.Extent(1200 , 629, Gravity.Center, new MagickColor("White")); }