get_doc_stream(); or
// $xml->get_doc_to_file("path/to/file/","file_name");
/////
// ATTENTION!
// all measurements are given in millimeters, but you can use the following units:
// 'cm' : //centimeters
// 'mm' : //millimeters
// 'q' : //alias of 'kyu'
// 'kyu' : //Q/kyu
// 'in' : //inches
// 'pt' : //alias of 'pts' (points)
// 'pts' : //points
// 'picas': //picas
// 'twips': //twips
/////
// ALSO - you can set special units everywhere, example:
// $pg_height="12in"; // will mean 12 inches
//
// will set table width to 2 cm
// and alike.
$default_units = "mm"; // default measurement units
//---------------------------------------------------
// DEFAULT PAGE SETTINGS
//---------------------------------------------------
$pg_width=210; // page width (mm)
$pg_height=297; // page height (mm)
$mar_left=19; // left margin width (mm)
$mar_right=19; // right margin width (mm)
$mar_top=19; // top margin height (mm)
$mar_bott=19; // bottom margin height (mm)
$facing_pages = 0; // 1 - activates activates odd/even headers and gutters;
// 0 - deactivates
$gutter_width = 5; // Gutter width (when $facing_pages is activated)
$rtl_gutter = 1; // if 1 - Gutter is positioned on the right
$page_orientation = "portrait"; // portrait or landscape
//$page_orientation = "landscape"; // portrait or landscape
$header_align = "right"; // default header align - "left", "right", "center"
$footer_align = "left"; // default footer align - "left", "right", "center"
$head_y=3; // space between the top edge of the page and the top header (mm)
$foot_y=10; // space between the bottom edge of the page and the bottom footer (mm)
$page_numbers = 1; // page numbers, if < 0 - no page numbers; if >= 0 page numbers start from the specified number
$page_numbers_valign = "bottom"; // vertical alignment of the page numbers ("top" or "bottom")
$page_numbers_align = "center"; // horisontal alignment of the page numbers ("left", "center", "right")
$page_numbers_autoinsert = "0"; // 0 = disable, 1 = enable autoinsertion.
// Use to insert pagenumber when disabled.
// Use to insert the total number of pages.
// Valign and align only work in enabled mode
//---------------------------------------------------
// DEFAULT HYPER LINK SETTINGS
//---------------------------------------------------
$h_link_color = "#009900"; // default color for hyper links
$h_link_fontf = "verdana"; // default link font face [arial,roman,sym,courier,seriff,garamond]
$h_link_fonts = "9"; // default link font size in pt
$h_link_fontd = ""; // default link decoration [ul - underline, i - italic, b - old]
//---------------------------------------------------
// DEFAULT FOOTNOTES SETTINGS
//---------------------------------------------------
$fnt_color = "#660099"; // default color for footnotes
$fnt_fontf = "garamond"; // default footnote font face [arial,roman,sym,courier,seriff,garamond]
$fnt_fonts = "10"; // default footnote font size in pt
$fnt_fontd = ""; // default footnote decoration [ul - underline, i - italic, b - old]
//---------------------------------------------------
// DEFAULT FONT AND PARAGRAPH SETTINGS
//---------------------------------------------------
$font_face = "arial"; // default font face [arial,roman,sym,courier,seriff,garamond]
$font_size = "12"; // font size in pt
$def_par_before = "0"; // space before paragraph (mm) (better set to 0, when using tables and set by tag)
$def_par_after = "0"; // space after paragraph (mm) (better set to 0, when using tables and set by tag)
$def_par_align = "left"; // default paragraph align.
// "left", "right", "center", "justify"
$def_par_lines = 4; // space between lines (mm). if 0 - minimal is taken
$def_par_lindent = "0"; // paragraph left indent (mm) (better set by tag)
$def_par_rindent = "0"; // paragraph right indent (mm) (better set by tag)
$def_par_findent = "0"; // first line indent (mm) (better set by tag)
//---------------------------------------------------
// DEFAULT TABLE SETTINGS
//---------------------------------------------------
$tbl_def_border = 1; // table border (1 - yes; 0 - no) or string value:
// "t,b,r,l" - means: top,bottom,right,left borders
// you can vary these letters to get the result you need
$tbl_def_width = "100%"; // table width (in mm or in % from page width)
$tbl_def_cellpadding = 0; // default cellpadding (mm)
$tbl_def_align = "left"; // default table align on the page (center, right, left)
$tbl_def_valign = "top";// default vertical text align for all the cells (top, middle, bottom)
$tbl_def_bgcolor = "0"; // table background (0 - no, or % from black)
$row_def_align = "left"; // default horizontal text align for all the cells (center, right, left)
//---------------------------------------------------
// DEFAULT IMAGE SETTINGS
//---------------------------------------------------
$image_size = 5000; // maximum allowed image size in kb
$img_def_border = 0; // image border (1 - yes; 0 - no)
$img_def_src = ""; // default image src (used when no, or a bad source specified)
$img_def_width = 20; // default image width (mm)
$img_def_height = 20; // default image height (mm)
$img_def_left = 0; // space between the anchor and image left edge (mm)
$img_def_top = 0; // space between the anchor and image top edge (mm)
$img_def_space = 5; // space between the image and the text (mm)
$img_def_align = "left"; // image align on the page (center, right, left)
$img_def_wrap = "around"; // type of text wrapping for image (no, updown, around)
$img_def_anchor = "par"; // linking anchor for image
// para = image is linked to the current paragraph
// page = image is linked to the current page (top left page corner)
// margin = image is linked to margin (top left page corner including margins)
//---------------------------------------------------
// MULTILINGUAL SUPPORT
//---------------------------------------------------
$multilingual_support = true; // if you need to create document with characters outside
// ASCII table - uou need this to be 'true'
// also - you need to have 'mbstring' PHP extention enabled
/*
--- ENCODING DEPENDENCIES ---
language charset encoding
==============================================
FRENCH 0 ISO-8859-1
GERMAN 0 ISO-8859-1
SPANISH 0 ISO-8859-1
SWEDISH 0 ISO-8859-1
RUSSIAN 204 Windows-1251
*/
//// FONT CHARACTER SET
$default_charset = 0; // sets default character set
/*
ANSI = 0
Default = 1
Symbol = 2
Invalid = 3
Mac = 77
Shift Jis = 128
Hangul = 129
Johab = 130
GB2312 = 134
Big5 = 136
Greek = 161
Turkish = 162
Vietnamese = 163
Hebrew = 177
Arabic = 178
Arabic Traditional = 179
Arabic user = 180
Hebrew user = 181
Baltic = 186
Russian = 204
Thai = 222
238Eastern European = 238
PC 437 = 254
OEM = 255
*/
?>