WOOF_Image :: resample( Arguments $args = array() )

Returns:

  • WOOF_Image An image object representing the resized image.

An alias for woof-image which is a more appropriate method name when we just want to change the jpeg quality without resizing.  

Example:

Parameters:

  • Arguments $args = array()

    An arguments array or string supporting the following parameters:

    • c => Whether the image should be cropped to fit the dimensions given (only applicable when BOTH dimensions are given). If you don’t crop, the image may contain whitespace to fill the shorter dimension – default 1 (true)
    • w => The width to resize to – default 0 (i.e. unspecified)
    • h => The height to resize to – default 0 (i.e. unspecified)
    • q => The image quality to use for JPEF images – default 85
    • ca => The location to crop from (crop anchor) when cropping is required – default 0 (unspecified), but can be
      • L = Left (Middle)
      • TL = Top-Left
      • BL = Bottom-Left
      • R = Right (Middle)
      • TR = Top-Right
      • BR = Bottom-Right
      • T = Top (Center)
      • B = Bottom (Center)
      • C = Center
    • iar => whether to ignore the aspect ratio and simply squash or stretch the image, without cropping or whitespace – default 0 (false)
    • up => whether to allow UPsizing of an image – default 1 (true)
    • co => An x,y offset to the crop anchor. default “0,0”

Latest From the Blog

MasterPress 1.4.1 is now available

27th May 2024

This update addresses backwards compatibility issues that were introduced in the previous update. There were some edge cases where PHP 7 had issues and it didn’t work at all on PHP 5.6.We have now changed it so that the PHP 8 compatibility changes will now only affect PHP 8 and will be more thorough with… 

Plugin Requirements

MasterPress requires a minimum of WordPress version 4.9, MySQL 5.6, and PHP version 5.6.20.

We also recommend that PHP is configured to use a memory limit of 64MB per request (128MB may be required for sites with higher complexity).

This plug-in is not compatible with the WordPress.com hosted service.

Three AM