for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace nstdio\svg\output;
/**
* Class IOFormat
*
* @package nstdio\svg\output
* @author Edgar Asatryan <[email protected]>
*/
final class IOFormat
{
const PNG = 'png';
const PNG8 = 'png8';
const PNG24 = 'png24';
const JPEG = 'jpeg';
const JPG = 'jpg';
const JP2 = 'jp2';
const TIFF = 'tiff';
const TTF = 'ttf';
const BMP = 'bmp';
const GIF = 'gif';
private function __construct()
}