Previous: プレゼンテーションの作成 Next: PHPスクリプトの例
設定ファイルの作成

設定ファイルの例

<?php
    $presentationDir 
'presentations';
    
$baseDir '/php/pres2/';
    
$showScript 'show.php';  // In case you want to ForceType a shorter one
    
$helpPage 'help.php';
    
$baseFontSize '12pt';
    
$flashFontScale 18;
    
$pdfFontScale 12;
    
$pdfResourceFile 'c:\php\pdf-related\pdflib.upr';
    
$pdf_font "Times-Roman";  // Look in your pdfResourceFile for more options
    
$pdf_encoding "winansi";  // PDF font encoding
    
$pdf_font_bold "Times-Bold";
    
$pdf_example_font "Courier";
    
$jsKeyboard true// enable javascript handling of keyboard events

// Convert em font sizing to flash font sizes
function flash_fixsize($ht) {
    global 
$flashFontScale;

    if(
strstr($ht,'em')) {
        
$ht = ((float)$ht*$flashFontScale);
    } 
    return 
$ht;
}

function 
pdf_fixsize($ht) {
    global 
$pdfFontScale;

    if(
strstr($ht,'em')) {
        
$ht = ((float)$ht*$pdfFontScale);
    } 
    return 
$ht;
}
?>