TwistPHP Documentation

output

File path: dist/twist/Core/Models/Image/Image.model.php
Namespace: Twist\Core\Models\Image
Extends:

outputOutputs the image to the screen without saving

Parameters

Name Type Description
[$strFormat = null]stringn/a
[$intQuality = null]integern/a
[$intCache = 3600]integern/a
[$blGZip = true]booleann/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strFormat null;
$intQuality null;
$intCache 3600;
$blGZip true;

//Call the function output with the example vars
$resImage = new \Twist\Core\Models\Image\Image();
$resImage -> output($strFormat$intQuality$intCache$blGZip);