Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
624 views

LaTeX Page Size — how do I produce a page that is “just big enough”?

I was learning about using the command line version of latex today, and I was experimenting with outputting .tex to .dvi, and then .dvi to .png. The problem is, I have a simple .tex document which ...
4
votes
1answer
102 views

linux / virtual/physical page sizes

Is the page size constant? To be more specific , getconf PAGE_SIZE gives 4096, fair enough. But can this change through a program's runtime? Or is it constant throughout the entire OS process spawn. ...
3
votes
1answer
2k views

Set page size using WIA (with scanner)

I'm using WIA to acquire images from a scanner with C#. I can scan the papers, but I can't set up the page size correctly, it always defaults to A4 and I need to use Letter or Legal sometimes. I ...
1
vote
0answers
79 views

How can I control paper orientation when printing to a dot matrix printer?

I am developing an identity card management application in Java that will replace a decades-old obsolete mainframe system. The required functionalities include printing personal data on cards that are ...
1
vote
0answers
78 views

How to change pagesize in FPDF or mPDF after creating the instance

How can i change the size of the page after creating it? I need to scale the page to the size of the PDF-template i want to place on it. For now, i need to create a page, place template, read size of ...
1
vote
2answers
314 views

page size of a unix machine using malloc

How do I know page size of a unix machine, using malloc()?
0
votes
1answer
22 views

Finding SC_PAGE_SIZE using Python in Windows

I'm working in this mixed environment where I'm on a Windows machine using Simics and Cygwin to run some code in a unix like environment. I've been coding in C but I'm interested in trying to do my ...
0
votes
1answer
47 views

How do I set the size of a printed page in java?

I have written a program that uses the Java print API to print pages from a printer. I believe I have put in code to set the page size to letter, but it still prints on whatever size is default for ...
0
votes
2answers
37 views

Is it guaranteed that the beginning of a file is aligned with Pagesize of file system?

It seems we can do nothing to aid the file system alignment if even this doesn't hold. Is it true?
0
votes
1answer
103 views

SQLite: Optimal PAGE_SIZE

I read that the default PAGE_SIZE value of 1024 in SQLite has been chosen merely for compatiblity between different platforms and operatings systems. Since my app runs only on Windows systems, would ...
0
votes
1answer
50 views

apache bencmark Document Lenght vs JSlow page's total weight

I'm load-testing my page with apache benchmark: ab -n 20 -c 5 http://localhost/mysite/index/index I know that Document Lenght stands for the sum of all HTML images,CSS,JS and anything within the ...
0
votes
1answer
219 views

How to set a variable page size in iReport

I want to print tickets in a termic printer, but it the information can use 3" or 25" of paper of length. If I set a page size of 25", i waste a lot of paper because is printed the white space. How ...
0
votes
2answers
252 views

How to Decide What Page Size to Use on an iOS Application

Wikipedia says that the US and Canada use letter size paper and the rest of the world uses A4 and that some countries use both. I want to create a PDF in my iPad application and am trying to figure ...
0
votes
3answers
86 views

What is a good size for medium sized memory allocations?

For a serializing system, I need to allocate buffers to write data into. The size needed is not known in advance, so the basic pattern is to malloc N bytes and use realloc if more is needed. The size ...