SproutCMS

This is the code documentation for the SproutCMS project

class QRvect

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-05-03
**/
class NewClassName extends QRvect {
    
    public function svg ($frame, $filename, $pixelPerPoint, $outerFrame, $saveandprint, $back_color, $fore_color) {
        // Method code goes here
    }
    
    private function vectSVG ($frame, $pixelPerPoint, $outerFrame, $back_color, $fore_color) {
        // Method code goes here
    }
    
    public function eps ($frame, $filename, $pixelPerPoint, $outerFrame, $saveandprint, $back_color, $fore_color, $cmyk) {
        // Method code goes here
    }
    
    private function vectEPS ($frame, $pixelPerPoint, $outerFrame, $back_color, $fore_color, $cmyk) {
        // Method code goes here
    }
    
}
?>