Update 3.19.21

New: Application.ResizeImage can now accept a resize method:

  • Contain: resizes to fit within both width and height. For example, 300x300 resized to 200x100 will result 100x100.
  • Emcompass: resizes to fit within either width or height. For example, 300x300 resized to 200x100 will result 200x200.
  • Cover: resizes to fit within either width or height but crops excess. For example, 300x300 resized to 200x100 will result 200x100 with height cropped top and bottom to center image.
  • Stretch: resizes to stretch to width and height. For example, 300x300 resized to 200x100 will result 200x100 stretched image.

New: When parsing Parameters in a URL where PageType=MethodView any missing parameters at the end will be defaulted to the method's parameter default value.