printing

print from php in macosx

Does anyone know a way to print from php5 in macosx leopard similar to the windows approach using php_printer.dll? I'm using macosx 10.5.7 and php 5.2.8. ...

XcvData "AddPort" function call fails

When I am calling XcvData "AddPort" with PORT_DATA_1 structure -> I get ERROR_INVALID_DATA. After digging around for a while I found out that if reserved field in tcpxcv.h header in PORT_DATA_1 structure is increased by 2 bytes then everything works fine. Anyone else had similar issue ? ...

Programmatically set print page orientation to landscape

We have an ASP.NET C# web application with a "printer friendly" link. Is there a way to programmatically set the orientation to landscape, so the user can just press the print button? ...

When printing PDF Document from Java, some of the text is rotated

I tried to print a PDF document from Java using PDFRenderer and ICEpdf. In both cases some of the text came out rotated in 180 degrees while the images stayed correct. With PDFREndere all the text is rotated and in ICEpdf only some of the lines. Any idea why is this happening? ...

Printing to a UNC to emulate command prompt 'copy'

We have several applications that generate their own PCL and Postscript via C#. When it comes to print we've traditionally allowed for multiple outputs such as IP (LPR or RAW 9100) or local printer using: How to send raw data to a printer by using Visual C# .NET We also send via UNC (\\server\printer_share). The problem with the last...

Why aren't newlines being printed in this Perl code?

I have some simple Perl code: #!/usr/bin/perl use strict; # not in the OP, recommended use warnings; # not in the OP, recommended my $val = 1; for ( 1 .. 100 ) { $val = ($val * $val + 1) % 8051; print ($val / 8050) . " \n"; } But when I run it, the output is: bash-3.2$ perl ./rand.pl 0.0002484472049689440.0006211180124223...

How can I print the contents of a hash in Perl?

I keep printing my hash as # of buckets / # allocated. How do I print the contents of my hash? Without using a while loop would be most preferable (ex: a one-line would be best) ...

How I Can Print The IP Of The Host

Hello, I'm learning C++ and i want to know how i can print the IP adress of the host machine, but remember that my program is a command line aplication(cmd), but i don't want the code, but some links here i can learn this, not copy and paste. Thanks! ...

PrintDocument Spooling to Printer is way to large

When i am trying to print an image to a printer for a 700kb file it is sending 120MB of data over to the printer. I can see this because I see the printer spooling 120MB. why would this happend? Here is the code for the PrintDocument.PrintPage private void PrintPage(object sender, PrintPageEventArgs ev) { sw.WriteLine("...

Capturing print output as vector format (PDF,SVG,EMF,etc.)

BACKGROUND I am using a commercial application on windows that creates a drawing This application allows only two output options: (1) save as a bitmap file and (2) print to a printer the bitmap is useless for my purposes - I want the vectors Looking at the print output (I sent to the Windows XPS print driver) it seems clear based on th...

What's the best way to directly print to a printer, like POS printer, over the web?

Is it possible to print to a networked printer from a web app? Are there any POS or similar form factor printers which can be connected to the internet and printed to directly(given that a port is opened through the router)? My ideal case would be a printer to which I could send XML and have it print without requiring a PC and hence no...

Saving and printing XPSDocument through Paginator (seems to)causes a rasterization of the content

I use the WPF Printing Path to handle big large diagrams created in our application. The whole diagram consists of visuals. A so called "DesignerPaginator" paginates the diagram (it is quite simple). From this point, I do the following three thing: - I print the Document with PrintDialog.PrintDocument(Paginator, Title) - I also create a...

printing a form

can i have a button in my form which shows the print dialog box so that the user can print that form ?? i m new in prog so pl help if there can be such commands to perform the action.. ...

Footer on last printed page

I have a web page that a client would like to print, and the part I'm having trouble getting my head around is to get the footer to sit at the bottom of the last printed page, not just when the content ends I tried something like #printfooter{display: block; position:fixed; bottom: 0;} but it displayed the footer at the end of each...

Print WPF ItemsControl Across Multiple Pages

I've got an ItemsCollection hosted inside a ScrollViewer that is large enough to span multiple pages when printed. I've so far managed to print a single page using PrintVisual(itemsControl) but from what I've read, I need to approach printing a single control accross multiple pages differently. Could anyone point me in the right directio...

Calculating a formatted string's width & height in C#

Hi, I am trying to generate a PDF using XSL(XML-FO) to transform a generated XML from a database. Because of complex rules in terms of paging for this document, calculations are done in determining the page breaks when I generate the XML that will be consumed by the XSL. I have noticed that I've been getting inconsistent results with ...

Set default print paper size when printing a pdf generated from crystal reports?

I am using crystal reports (the version that comes with visual studio 2008) to generate a pdf in an asp.net which then gets pulled into a client's browser. Some of these reports are on legal size paper. This means that for these reports our clients have to manually change the paper size in the print dialog every time they print. Of co...

How can I specify a printer other than the default printer?

I'd like to be able to specify two different printers for two different jobs. I'm using the following class to handle printing these, but regardless of what I do, the default printer is always the one that's printed to. Public Class Receipt : Inherits Printing.PrintDocument Private _font As Font = New Font("Courier", 8) Private _text As...

printing a picture twice on the same page.

Hi, I want to enable printing a picture from my web page so that the picture will be previewed and printed twice on the same page i.e. 1 A4 with the image printed 2 or 4 times on the same A4. Is it possible with the FF and IE browsers interface? Thanks, Yuval. ...

Is there a way to use the same CSS stylesheet for print media and the default layout?

I am looking for a way to use the same stylesheet for print media as for the default onscreen layout. The advantage to me will be that I won't have to update 2 files every time I update the CSS. I would prefer to have one stylesheet and specify special rules for print media by denoting them somehow… It may not be possible, but I thought ...