Trying to set the width and height on a JPG file converted from a PDF. Here is my code. Getting a failure status on convert saying "pdf.pdf conversion to Jpg: width and height should be greater then zero, but was: -2147483648 x -2147483648\r\nParameter name: bounds". Taking out the save option works fine.
...
var optionsImage = new ImageSaveOptions();
optionsImage.Width = 800;
optionsImage.Height = 800;
var optionsSave = new SaveOptions();
optionsSave.ImageSaveOptions = optionsImage;
ConversionJobResult convert_result = conversion_service.Convert(FileType.Jpg, optionsSave);