Properties

$image_library

$image_library : string

PHP extension/library to use for image manipulation Can be: imagemagick, netpbm, gd, gd2

Type

string

$library_path

$library_path : string

Path to the graphic library (if applicable)

Type

string

$dynamic_output

$dynamic_output : boolean

Whether to send to browser or write to disk

Type

boolean

$source_image

$source_image : string

Path to original image

Type

string

$new_image

$new_image : string

Path to the modified image

Type

string

$width

$width : integer

Image width

Type

integer

$height

$height : integer

Image height

Type

integer

$quality

$quality : integer

Quality percentage of new image

Type

integer

$create_thumb

$create_thumb : boolean

Whether to create a thumbnail

Type

boolean

$thumb_marker

$thumb_marker : string

String to add to thumbnail version of image

Type

string

$maintain_ratio

$maintain_ratio : boolean

Whether to maintain aspect ratio when resizing or use hard values

Type

boolean

$master_dim

$master_dim : string

auto, height, or width. Determines what to use as the master dimension

Type

string

$rotation_angle

$rotation_angle : string

Angle at to rotate image

Type

string

$x_axis

$x_axis : integer

X Coordinate for manipulation of the current image

Type

integer

$y_axis

$y_axis : integer

Y Coordinate for manipulation of the current image

Type

integer

$wm_text

$wm_text : string

Watermark text if graphic is not used

Type

string

$wm_type

$wm_type : string

Type of watermarking. Options: text/overlay

Type

string

$wm_x_transp

$wm_x_transp : integer

Default transparency for watermark

Type

integer

$wm_y_transp

$wm_y_transp : integer

Default transparency for watermark

Type

integer

$wm_overlay_path

$wm_overlay_path : string

Watermark image path

Type

string

$wm_font_path

$wm_font_path : string

TT font

Type

string

$wm_font_size

$wm_font_size : integer

Font size (different versions of GD will either use points or pixels)

Type

integer

$wm_vrt_alignment

$wm_vrt_alignment : string

Vertical alignment: T M B

Type

string

$wm_hor_alignment

$wm_hor_alignment : string

Horizontal alignment: L R C

Type

string

$wm_padding

$wm_padding : integer

Padding around text

Type

integer

$wm_hor_offset

$wm_hor_offset : integer

Lets you push text to the right

Type

integer

$wm_vrt_offset

$wm_vrt_offset : integer

Lets you push text down

Type

integer

$wm_shadow_distance

$wm_shadow_distance : integer

Dropshadow distance

Type

integer

$wm_opacity

$wm_opacity : integer

Image opacity: 1 - 100 Only works with image

Type

integer

$source_folder

$source_folder : string

Source image folder

Type

string

$dest_folder

$dest_folder : string

Destination image folder

Type

string

$mime_type

$mime_type : string

Image mime-type

Type

string

$orig_width

$orig_width : integer

Original image width

Type

integer

$orig_height

$orig_height : integer

Original image height

Type

integer

$image_type

$image_type : string

Image format

Type

string

$size_str

$size_str : string

Size of current image

Type

string

$full_src_path

$full_src_path : string

Full path to source image

Type

string

$full_dst_path

$full_dst_path : string

Full path to destination image

Type

string

$file_permissions

$file_permissions : integer

File permissions

Type

integer

$create_fnc

$create_fnc : string

Name of function to create image

Type

string

$copy_fnc

$copy_fnc : string

Name of function to copy image

Type

string

$error_msg

$error_msg : array

Error messages

Type

array

$wm_use_truetype

$wm_use_truetype : boolean

Whether to use truetype fonts

Type

boolean

$wm_font_color

$wm_font_color : string

Text color

Type

string

$wm_shadow_color

$wm_shadow_color : string

Dropshadow color

Type

string

$wm_use_drop_shadow

$wm_use_drop_shadow : boolean

Whether to have a drop shadow on watermark

Type

boolean

Methods

__construct()

__construct(array  $props = array()) : void

Initialize Image Library

Parameters

array $props

clear()

clear() : void

Initialize image properties

Resets values in case this class is used in a loop

initialize()

initialize(  $props = array()) : boolean

initialize image preferences

Parameters

$props

Returns

boolean

resize()

resize() : boolean

Image Resize

This is a wrapper function that chooses the proper resize function based on the protocol specified

Returns

boolean

crop()

crop() : boolean

Image Crop

This is a wrapper function that chooses the proper cropping function based on the protocol specified

Returns

boolean

rotate()

rotate() : boolean

Image Rotate

This is a wrapper function that chooses the proper rotation function based on the protocol specified

Returns

boolean

image_process_gd()

image_process_gd(  $action = 'resize') : boolean

Image Process Using GD/GD2

This function will resize or crop

Parameters

$action

Returns

boolean

image_process_imagemagick()

image_process_imagemagick(  $action = 'resize') : boolean

Image Process Using ImageMagick

This function will resize, crop or rotate

Parameters

$action

Returns

boolean

image_process_netpbm()

image_process_netpbm(  $action = 'resize') : boolean

Image Process Using NetPBM

This function will resize, crop or rotate

Parameters

$action

Returns

boolean

image_rotate_gd()

image_rotate_gd() : boolean

Image Rotate Using GD

Returns

boolean

image_mirror_gd()

image_mirror_gd() : boolean

Create Mirror Image using GD

This function will flip horizontal or vertical

Returns

boolean

watermark()

watermark() : boolean

Image Watermark

This is a wrapper function that chooses the type of watermarking based on the specified preference.

Returns

boolean

overlay_watermark()

overlay_watermark() : boolean

Watermark - Graphic Version

Returns

boolean

text_watermark()

text_watermark() : boolean

Watermark - Text Version

Returns

boolean

image_create_gd()

image_create_gd(  $path = '',   $image_type = '') : resource

Create Image - GD

This simply creates an image resource handle based on the type of image being processed

Parameters

$path
$image_type

Returns

resource

image_save_gd()

image_save_gd(  $resource) : boolean

Write image file to disk - GD

Takes an image resource as input and writes the file to the specified destination

Parameters

$resource

Returns

boolean

image_display_gd()

image_display_gd(  $resource) : void

Dynamically outputs an image

Parameters

$resource

image_reproportion()

image_reproportion() : void

Re-proportion Image Width/Height

When creating thumbs, the desired width/height can end up warping the image due to an incorrect ratio between the full-sized image and the thumb.

This function lets us re-proportion the width/height if users choose to maintain the aspect ratio when resizing.

get_image_properties()

get_image_properties(  $path = '',   $return = FALSE) : mixed

Get image properties

A helper function that gets info about the file

Parameters

$path
$return

Returns

mixed

size_calculator()

size_calculator(  $vals) : array

Size calculator

This function takes a known width x height and recalculates it to a new size. Only one new variable needs to be known

$props = array( 'width' => $width, 'height' => $height, 'new_width' => 40, 'new_height' => '' );

Parameters

$vals

Returns

array

explode_name()

explode_name(  $source_image) : array

Explode source_image

This is a helper function that extracts the extension from the source_image. This function lets us deal with source_images with multiple periods, like: my.cool.jpg It returns an associative array with two elements: $array['ext'] = '.jpg'; $array['name'] = 'my.cool';

Parameters

$source_image

Returns

array

gd_loaded()

gd_loaded() : boolean

Is GD Installed?

Returns

boolean

gd_version()

gd_version() : mixed

Get GD version

Returns

mixed

set_error()

set_error(  $msg) : void

Set error message

Parameters

$msg

display_errors()

display_errors(  $open = '<p>',   $close = '</p>') : string

Show error messages

Parameters

$open
$close

Returns

string