php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12979 Printing Problems
Submitted: 2001-08-27 10:39 UTC Modified: 2002-06-01 12:45 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:0 of 1 (0.0%)
From: stephane dot bonnet at dataonclick dot com Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 4.0.6 OS: Win Nt 4 + Sp6
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: stephane dot bonnet at dataonclick dot com
New email:
PHP Version: OS:

 

 [2001-08-27 10:39 UTC] stephane dot bonnet at dataonclick dot com
My code 

<?
$handle = printer_open("HP");
printer_start_doc($handle, "My Document");
printer_start_page($handle);
for ($i=1;$i<63;$i++)
	{
	printer_draw_text($handle, "Line $i", 500, 50+$i*50);
	$a=0;
	}
printer_end_page($handle);
printer_end_doc($handle);
printer_close($handle);
?>

The result :

The printer give print all the line except Line 17, Line 34 And line 51...
It's very strange !!! 


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-01 12:45 UTC] edink@php.net
Thank you for taking the time to report a problem with PHP.
Unfortunately your version of PHP is too old -- the problem
might already be fixed. Please download a new PHP
version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 16:01:31 2024 UTC