X-Git-Url: https://git.llucax.com/personal/documentos.git/blobdiff_plain/1a51aa05adb10c430d46b751a3b60ce102649719..23462221fbecfb39565b4a22bd010d7a04960672:/mp3_labels/procesar.php?ds=sidebyside diff --git a/mp3_labels/procesar.php b/mp3_labels/procesar.php index a9e4ebf..daf5952 100755 --- a/mp3_labels/procesar.php +++ b/mp3_labels/procesar.php @@ -4,11 +4,11 @@ require_once 'HTML/Template/Sigma.php'; PEAR::setErrorHandling(PEAR_ERROR_DIE); -define('X_BASE', 60); +define('X_BASE', 30); define('X_COL2', 205); -define('Y_BASE', 65); +define('Y_BASE', 35); define('Y_MAX', 310); -define('PUNTOS', 10); +define('PUNTOS', 5); if ($argc < 2) { $name = basename($argv[0]); @@ -20,7 +20,7 @@ if ($argc < 2) { $numero = $argv[1]; $dir = @$argv[2] ? $argv[2] : '.'; -$filename = @$argv[3] ? $argv[3] : "MP3_$numero.glabels"; +$filename = @$argv[3] ? $argv[3] : "mp3-dvd-$numero.glabels"; $template = 'Template.MP3.glabels'; $template_dir = '.'; @@ -55,7 +55,7 @@ if ($datos) { $tpl =& new HTML_Template_Sigma($template_dir); $tpl->loadTemplateFile($template); $tpl->setGlobalVariable(array( - 'N' => $numero, + 'N' => sprintf("%02d", $numero), 'PUNTOS' => PUNTOS, )); @@ -71,8 +71,8 @@ if ($datos) { $tpl->setVariable(array( 'X' => $x, 'TEXTO_Y' => $y, - 'LINEA_Y' => $y + PUNTOS - 1, - 'LINEA_ANCHO' => strlen($artista) * 6, + 'LINEA_Y' => $y + PUNTOS + 2.5, + 'LINEA_ANCHO' => strlen($artista) * 2.5 + 25 / strlen($artista), 'ARTISTA' => translate($artista), )); sort($albums);