|
5616 × 3744 (21.0 MP)
That's the size of the file I want to print.
Here are the sizes I would like to print:
24 x 36
22 x 28
18 x 24
16 x 20
18 x 24 would be the smallest BUT if it's going to look bad then I can go with the 16 x 20.
I've noticed a lot...
Started by alfa147x on
, 19 posts
by 5 people.
Answer Snippets (Read the full thread at anandtech):
You can do is crop a section or two out and print smaller at the same dpi to see what you think.
|
|
I'm trying to print iframe content.
contentWindow.focus(); contentWindow.print();
This code works in IE, Firefox and Safari. But don't work in Chrome and Opera. These browsers print entire page.
I tried to use this topic http://stackoverflow.com/questions...
Started by Unholy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
My print = contentWindow.location.href; href = href.indexOf("?") > -1 ? href + "&print=1" : href + "?print=1 of the body (when ....
As I understand, it's impossible to implement iframe printing without opening new window.
|
|
I'm not talking about just to mke print css or media=print
Questions:
I am talking what other things we should do in XHTMl and screen css and print css (other than disply:none in print css) we should care to get good print from website pages. And do we...
Started by jitendra on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure why someone would print this out, but if they do, a bunch of underlined in your browser ....
There are a couple helpful articles on A List Apart on this topic: Going to Print and Printing websites for topic xyz.
|
Ask your Facebook Friends
|
I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I never programmed printing into any app before.
Are there any sites that...
Started by Eric Fortier on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I´ve hooked or the print method of TForm you´d have to....
Another option thinking laterally is to use MS Word as a print engine.
A number of Delphis came with print engines like ReportSmith (ugh).
Of Delphi you´re using is important.
|
|
Sorry if this is a little off-topic for regular stackoverflow questions, but we're tearing our hair out on this one. We've got a batch of about 3500 3-page PDFs to print (all ok so far) the problem we've got is that it's vital they print in a specific...
Started by Shift8 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Thanks all, I some advice over a techrepublic with regards to a printer setting called 'Print spooled documents first.
I would first take a look at the print spooler, though.
In the order you want.
|
|
I have a function to print characters on the screen that is like this:
void print(int colour, int y, int x, const char *string) { volatile char *video=(volatile char*)0xB8000 + y*160 + x*2; while(*string != 0) { *video=*string; string++; video++; *video...
Started by Nathan Campos on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This is off-topic, memories of this, but digging up the code I found.
Embed the character in the string using C's hex notation:
print(0x0f, 0, 0, "\xfe");
As folks have for the VGA framebuffer base address .
|
|
I have a client asking if their web application (PHP) can easily print to a UPS / Fedex thermal label printer.
So for instance, I can get back a PDF from UPS/Fedex with the shipping label. I just need to print that.
Does anyone know if you can print directly...
Started by Keith Palmer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Depending how you want to print will also determine how you on the keyboard trying to get PDFs to....
You need the correct drivers installed to do this.
I used to work on UPS shipping systems and yes you can print using the thermal printers.
|
|
All,
I have a html string held in memory after transforming to my desired template with XSLT. What is the best mechanism to the send this to the client printer?
In previous projects I have shamelessly cheated and created a print preview scree which was...
Started by Dean on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How do I do advanced printing from a web application?.
Related if not duplicate topic.
On the screen and also prints nicely when the user chooses print in the browser.
|
|
I'm using this simple function:
def print_players(players): tot = 1 for p in players: print '%2d: %15s \t (%d|%d) \t was: %s' % (tot, p['nick'], p['x'], p['y'], p['oldnick']) tot += 1
and I'm supposing nicks are no longer than 15 characters.
I'd like ...
Started by Andrea Ambu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
How about:
print '%2d' % tot + ': %(nick)-15s \t (%(x)d|%(y)d) \t was: %(oldnick)15s' % p) '93: john \t (33|993\t was: rodger'
Slightly off topic, but you can avoid performing explicit addition on tot using enumerate :
for tot, p in enumerate....
|
|
Simple problem really, ... what would be the best way to print some chm files so it looks like something on paper?
I have some manuals which I'd like to have also in paper form, and printing chm page by page is a pain.
So, all ideas welcomed.
Started by ldigas on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
print the ....
Hope this helps you Merger )
3.
Right click on topic, a popup will appear, in that select option "Print the selected heading and all subtopics.".
In case you want to print a single topic from chm document.
|