|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-12-16 08:25 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 05:00:01 2025 UTC |
Description: ------------ I cannot use printer_set_option() to specify the orientation of the paper. Reproduce code: --------------- --- From manual page: function.printer-set-option#Parameters --- <?php $ptr=printer_open("HP LaserJet 6P"); printer_start_doc($ptr); printer_set_option($ptr,PRINTER_ORIENTATION,PRINTER_ORIENTATION_LANDSCAPE); printer_start_page($ptr); printer_write($ptr,"The letter is sidelong."); printer_close($ptr); ?> Expected result: ---------------- I can specify the orientation of the paper to be sidelong. Actual result: -------------- It doesn't change.