Hi all,
while testing a possible bug with "SHIFTING" MSO contents (no problems in CS5.5 so far I can tell), I ran into another bug, I think wellknown, in building 2048 x 1536px InDesign CS5.5 files with a folio size of 1024 x 768 px output for iPad 2 and 3.
Confifuration:
InDesign CS5.5 v7.5.3 Build 333
OSX 10.6.8
Tested in Adobe Content Viewer on the iPad3
(via USB cable attached)
The ACV on the iPad is the one that came along with DPS v20.
Adobe DPS version:
plug-in version
7.5.5.20
folio format version
2.0.0
plist version
1.3.0
ExtensionBundleVersion
12.3.1.20120730_m_695362
****
Folio size: 1024 x 768 px
Orientation: horizontal & vertical
****
Problem: only the vertical orientation is showing correctly.
When switching the iPad3 from vertical to horizontal orientation a scrollable view of the vertical contents is showing up.
Solution:
Change the page size of the horizontal oriented InDesign file to 2047.9 px x 1536 px, remove the old folio, build a new one.
Since InDesign CS5.5 does not have a fixed standard preset for 2048 x 1536 px size for files, you are well advised to prepair a custom document preset for 2047.9 x 1536 px files. Just tested, if 2047.9 px are also good for vertical orientated files and all went well… Otherwise you need two individual presets…
This rounding error should not occur in InDesign CS6 since a fixed standard preset for 2048 x 1536 px is available there…
Note:
I did not change the pages individually from 1024x768px to 2048 x 1536px, but changed the document setup…
Uwe
@Neil – yes, I'm using pixels for document settings. Always.
But this issue is no big surprise for me ;-)
There is an "older" DPS script by Derek Lu at:
http://www.adobe.com/devnet/digitalpublishingsuite/articles/dps-pdf-to -indesign.html
And even he is mentioning rounding errors (though he is using 1024 x 768 px sized InDesign files).
This is a code snippet from the very top of his "create_indd.jsx" script showing not exact pixel values for creating the possible document settings:
// Use decimals otherwise the multiple article import will
// have rounding errors and not allow a flattened stack.
var PORTRAIT_PAGE_WIDTH = 767.9999;
var PORTRAIT_PAGE_HEIGHT = 1023.9999;
var LANDSCAPE_PAGE_WIDTH = 1023.9999;
var LANDSCAPE_PAGE_HEIGHT = 767.9999;
var PORTRAIT_ASPECT_RATIO = PORTRAIT_PAGE_WIDTH / PORTRAIT_PAGE_HEIGHT;
var PORTRAIT_GEOMETRIC_BOUNDS = {geometricBounds: [0, 0, PORTRAIT_PAGE_HEIGHT, PORTRAIT_PAGE_WIDTH]};
var LANDSCAPE_GEOMETRIC_BOUNDS = {geometricBounds: [0, 0, LANDSCAPE_PAGE_HEIGHT, LANDSCAPE_PAGE_WIDTH / 2]};
The rounding errors are no real problem for me.
I just wanted to know you, that they are there…
Uwe
North America
Europe, Middle East and Africa
Asia Pacific