Specifying the size of the image in MagickReadSettings does not automatically resize it. It is a setting for images that don't have predefined dimensions. You will have to call the Resize method.
image.Format = MagickFormat.Jpeg image.Resize(800, 600) imgString = image.ToBase64()