diff options
author | prashantsinalkar | 2018-07-11 15:10:21 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-07-11 15:10:21 +0530 |
commit | b16fbaeb5f3ded0298780a655f330947301289f8 (patch) | |
tree | 213de513140f6a8e8b372e8b61207a2bdb0792e1 /pdf/phpqrcode/tools/merged_config.php | |
parent | cd438aedb195cf83f2f198153c571f4abf3e5812 (diff) | |
download | scilab_in_migration_certificates-b16fbaeb5f3ded0298780a655f330947301289f8.tar.gz scilab_in_migration_certificates-b16fbaeb5f3ded0298780a655f330947301289f8.tar.bz2 scilab_in_migration_certificates-b16fbaeb5f3ded0298780a655f330947301289f8.zip |
added certificate files
Diffstat (limited to 'pdf/phpqrcode/tools/merged_config.php')
-rwxr-xr-x | pdf/phpqrcode/tools/merged_config.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pdf/phpqrcode/tools/merged_config.php b/pdf/phpqrcode/tools/merged_config.php new file mode 100755 index 0000000..55ddb45 --- /dev/null +++ b/pdf/phpqrcode/tools/merged_config.php @@ -0,0 +1,17 @@ +<?php
+/*
+ * PHP QR Code encoder
+ *
+ * Config file, tuned-up for merged verion
+ */
+
+ define('QR_CACHEABLE', false); // use cache - more disk reads but less CPU power, masks and format templates are stored there
+ define('QR_CACHE_DIR', false); // used when QR_CACHEABLE === true
+ define('QR_LOG_DIR', false); // default error logs dir
+
+ define('QR_FIND_BEST_MASK', true); // if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code
+ define('QR_FIND_FROM_RANDOM', 2); // if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly
+ define('QR_DEFAULT_MASK', 2); // when QR_FIND_BEST_MASK === false
+
+ define('QR_PNG_MAXIMUM_SIZE', 1024); // maximum allowed png image width (in pixels), tune to make sure GD and PHP can handle such big images
+
\ No newline at end of file |