SproutCMS

This is the code documentation for the SproutCMS project

class QRimage

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-05
**/
class NewClassName extends QRimage {
    
    private function image ($frame, $pixelPerPoint, $outerFrame, $back_color, $fore_color) {
        // Method code goes here
    }
    
    public function jpg ($frame, $filename, $pixelPerPoint, $outerFrame, $q) {
        // Method code goes here
    }
    
    public function png ($frame, $filename, $pixelPerPoint, $outerFrame, $saveandprint, $back_color, $fore_color) {
        // Method code goes here
    }
    
}
?>