1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
|
/************************************************************************/
/* */
/* Manage the layout of document pages on sheets of paper. */
/* */
/************************************************************************/
# include "appUtilConfig.h"
# include <stddef.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <utilNup.h>
# include <appDebugon.h>
/************************************************************************/
/* */
/* Basic bookkeeping. */
/* */
/************************************************************************/
void utilInitNupSchema( NupSchema * ns )
{
utilInitAffineTransform2D( &(ns->nsBaseTransform) );
ns->nsNup= 1;
ns->nsRows= 1;
ns->nsCols= 1;
ns->nsNupTransforms= (AffineTransform2D *)0;
ns->nsXShift= 0;
return;
}
void utilCleanNupSchema( NupSchema * ns )
{
if ( ns->nsNupTransforms )
{ free( ns->nsNupTransforms ); }
return;
}
/************************************************************************/
/* */
/* Initialisation for 'nup' printing. */
/* */
/* The transform returned is the transform to place a single page */
/* in the upper left corner on the output sheet at the desired scale. */
/* */
/* Without rotation the upper left corner of the document page is */
/* moved to the uppper left corner of the sheet. */
/* With rotation the upper right corner of the document page is */
/* moved to the uppper left corner of the sheet. (And the upper left */
/* corner of the document page goes to the lower left corner of the */
/* sheet) */
/* */
/* 0) Make an exception for the trivial situation where the page fits */
/* on the sheet, to give the hach below a chance. */
/* 1) Hack: When the page is higher than the sheet, shift by the page */
/* size. This gives better results in case of misconfiguration. */
/* 2) Calculate amounts to scale with and without rotation. */
/* 3) scale without rotation. */
/* 4) scale with rotation. */
/* */
/************************************************************************/
int utilNupGetBaseTranform(
AffineTransform2D * pAt1Page,
int * pRotatePages,
const PrintGeometry * pg,
const DocumentGeometry * dgPage,
double fac )
{
double axx;
double axy;
double ayx;
double ayy;
int fitsWithoutRot= 0;
int fitsWithRot= 0;
double tx= 0.0;
double ty= 0.0;
int rotatePages= 0;
const DocumentGeometry * dgSheet= &(pg->pgSheetGeometry);
int cols= pg->pgGridCols;
int rows= pg->pgGridRows;
double cellWideTwips= dgSheet->dgPageWideTwips/ cols;
double cellHighTwips= dgSheet->dgPageHighTwips/ rows;
if ( dgPage->dgPageWideTwips <= cellWideTwips &&
dgPage->dgPageHighTwips <= cellHighTwips )
{ fitsWithoutRot= 1; }
if ( dgPage->dgPageWideTwips <= cellHighTwips &&
dgPage->dgPageHighTwips <= cellWideTwips )
{ fitsWithRot= 1; }
/* 0 */
if ( rows == 1 &&
cols == 1 &&
fitsWithoutRot &&
! pg->pgRotatePage90 )
{
/* 1 */
if ( dgPage->dgPageHighTwips > dgSheet->dgPageHighTwips )
{ ty= dgPage->dgPageHighTwips; }
else{ ty= dgSheet->dgPageHighTwips; }
pAt1Page->at2Axx= fac* 1.0;
pAt1Page->at2Axy= fac* 0.0;
pAt1Page->at2Ayx= fac* 0.0;
pAt1Page->at2Ayy= fac* -1.0;
pAt1Page->at2Tx= fac* tx;
pAt1Page->at2Ty= fac* ty;
*pRotatePages= 0;
return 0;
}
/* 0 */
if ( rows == 1 &&
cols == 1 &&
fitsWithRot )
{
if ( dgPage->dgPageWideTwips < dgSheet->dgPageHighTwips )
{ ty= dgSheet->dgPageHighTwips- dgPage->dgPageWideTwips; }
pAt1Page->at2Axx= fac* 0.0;
pAt1Page->at2Axy= fac* 1.0;
pAt1Page->at2Ayx= fac* 1.0;
pAt1Page->at2Ayy= fac* 0.0;
pAt1Page->at2Tx= fac* tx;
pAt1Page->at2Ty= fac* ty;
*pRotatePages= 1;
return 0;
}
/* 2 */
axx= ( 1.0* cellWideTwips )/ ( 1.0* dgPage->dgPageWideTwips );
axy= ( 1.0* cellHighTwips )/ ( 1.0* dgPage->dgPageWideTwips );
ayx= ( 1.0* cellWideTwips )/ ( 1.0* dgPage->dgPageHighTwips );
ayy= ( 1.0* cellHighTwips )/ ( 1.0* dgPage->dgPageHighTwips );
if ( axx > 1.0 ) { axx= 1.0; }
if ( axy > 1.0 ) { axy= 1.0; }
if ( ayx > 1.0 ) { ayx= 1.0; }
if ( ayy > 1.0 ) { ayy= 1.0; }
/* 3 */
if ( axx > ayy )
{ axx= ayy; }
/* 4 */
if ( axy > ayx )
{ axy= ayx; }
if ( axy > 1.02* axx )
{ rotatePages= 1; }
else{ rotatePages= 0; }
if ( ! pg->pgScalePagesToFit )
{ axx= axy= 1.0; }
if ( rotatePages )
{
ty= dgSheet->dgPageHighTwips- cellHighTwips;
pAt1Page->at2Axx= fac* 0.0;
pAt1Page->at2Axy= fac* axy;
pAt1Page->at2Ayx= fac* axy;
pAt1Page->at2Ayy= fac* 0.0;
pAt1Page->at2Tx= fac* tx;
pAt1Page->at2Ty= fac* ty;
}
else{
ty= cellHighTwips;
pAt1Page->at2Axx= fac* axx;
pAt1Page->at2Axy= fac* 0.0;
pAt1Page->at2Ayx= fac* 0.0;
pAt1Page->at2Ayy= fac* -axx;
pAt1Page->at2Tx= fac* tx;
pAt1Page->at2Ty= fac* ty;
}
*pRotatePages= rotatePages; return 0;
}
/************************************************************************/
/* */
/* Determine the bounding box for one sheet. */
/* */
/************************************************************************/
void utilNupSheetBoundingBox(
DocumentRectangle * sheetBBox,
const NupSchema * ns,
const DocumentGeometry * dgPage,
int hasPageHeader,
int hasPageFooter )
{
int x0;
int y0;
int x1;
int y1;
DocumentRectangle dr;
int i;
const AffineTransform2D * at;
/**/
if ( ns->nsNup == 1 )
{ at= &(ns->nsBaseTransform); }
else{ at= ns->nsNupTransforms; }
/**/
x0= dgPage->dgLeftMarginTwips;
x1= dgPage->dgPageWideTwips- dgPage->dgRightMarginTwips;
if ( hasPageHeader )
{ y0= dgPage->dgHeaderPositionTwips; }
else{ y0= dgPage->dgTopMarginTwips; }
if ( hasPageFooter )
{ y1= dgPage->dgPageHighTwips- dgPage->dgFooterPositionTwips; }
else{ y1= dgPage->dgPageHighTwips- dgPage->dgBottomMarginTwips; }
for ( i= 0; i < ns->nsNup; at++, i++ )
{
dr.drX0= AT2_X( x0, y0, at );
dr.drY0= AT2_Y( x0, y0, at );
dr.drX1= AT2_X( x1, y1, at );
dr.drY1= AT2_Y( x1, y1, at );
dr.drX0 += ns->nsXShift;
dr.drX1 += ns->nsXShift;
docNormalizeRectangle( &dr, &dr );
if ( i == 0 )
{ *sheetBBox= dr; }
else{ docUnionRectangle( sheetBBox, sheetBBox, &dr ); }
}
return;
}
/************************************************************************/
/* */
/* Get the transform for a certain page. */
/* */
/************************************************************************/
void utilNupGetPageTranform(
AffineTransform2D * at,
const NupSchema * ns,
int page )
{
if ( ns->nsNup == 1 )
{
*at= ns->nsBaseTransform;
}
else{
*at= ns->nsNupTransforms[page % ns->nsNup];
}
at->at2Tx += ns->nsXShift;
return;
}
/************************************************************************/
/* */
/* Set the transform for the individual pages in a nup != 1 schema */
/* */
/* Rows and columns are the 'reading order' of the sheet. */
/* Realize that PostScript coordinates are oriented as we were taught */
/* at school. I.E. with the Y axis pointing up. */
/* */
/************************************************************************/
static void utilNupSetSheetGrid( NupSchema * ns,
const PrintGeometry * pg,
int rotateGrid,
double fac )
{
const DocumentGeometry * dgSheet= &(pg->pgSheetGeometry);
int cols= pg->pgGridCols;
int rows= pg->pgGridRows;
const int cellWideTwips= dgSheet->dgPageWideTwips/ cols;
const int cellHighTwips= dgSheet->dgPageHighTwips/ rows;
int row;
int col;
if ( ns->nsNup <= 1 || rows* cols != ns->nsNup )
{ LLLDEB(rows,cols,ns->nsNup); return; }
if ( rotateGrid )
{
AffineTransform2D * at;
at= ns->nsNupTransforms;
for ( col= 0; col < cols; col++ )
{
double x= col* cellWideTwips;
for ( row= rows- 1; row >= 0; at++, row-- )
{
double y= -row* cellHighTwips;
*at= ns->nsBaseTransform;
at->at2Tx += fac* x;
at->at2Ty += fac* y;
}
}
}
else{
AffineTransform2D * at;
if ( pg->pgGridHorizontal )
{
at= ns->nsNupTransforms;
for ( row= 0; row < rows; row++ )
{
double y= dgSheet->dgPageHighTwips- ( row+ 1 )* cellHighTwips;
for ( col= 0; col < cols; at++, col++ )
{
double x= col* cellWideTwips;
*at= ns->nsBaseTransform;
at->at2Tx += fac* x;
at->at2Ty += fac* y;
}
}
}
else{
at= ns->nsNupTransforms;
for ( col= 0; col < cols; col++ )
{
double x= col* cellWideTwips;
for ( row= 0; row < rows; at++, row++ )
{
double y= dgSheet->dgPageHighTwips-
( row+ 1 )* cellHighTwips;
*at= ns->nsBaseTransform;
at->at2Tx += fac* x;
at->at2Ty += fac* y;
}
}
}
}
return;
}
/************************************************************************/
/* */
/* Fill a Nup Schema. */
/* */
/************************************************************************/
int utilNupSetSchema( NupSchema * ns,
int rotateSheetGrid,
const AffineTransform2D * at1Page,
const PrintGeometry * pg,
double fac,
const DocumentGeometry * dgPage )
{
AffineTransform2D * at;
int nup= pg->pgGridRows* pg->pgGridCols;
ns->nsBaseTransform= *at1Page;
if ( nup == 1 )
{
if ( pg->pgCenterPageHorizontally )
{
const DocumentGeometry * dgSheet= &(pg->pgSheetGeometry);
if ( rotateSheetGrid )
{
ns->nsXShift=
( dgSheet->dgPageWideTwips- dgPage->dgPageHighTwips )/2;
}
else{
ns->nsXShift=
( dgSheet->dgPageWideTwips- dgPage->dgPageWideTwips )/2;
}
ns->nsXShift *= fac;
}
ns->nsRows= pg->pgGridRows;
ns->nsCols= pg->pgGridCols;
ns->nsNup= nup;
}
else{
if ( pg->pgRotatePage90 || pg->pgCenterPageHorizontally )
{ LLDEB(pg->pgRotatePage90,pg->pgCenterPageHorizontally); }
ns->nsXShift= 0;
at= realloc( ns->nsNupTransforms, nup* sizeof( AffineTransform2D ) );
if ( ! at )
{ XDEB(at); return -1; }
ns->nsNupTransforms= at;
ns->nsRows= pg->pgGridRows;
ns->nsCols= pg->pgGridCols;
ns->nsNup= nup;
utilNupSetSheetGrid( ns, pg, rotateSheetGrid, fac );
}
return 0;
}
/************************************************************************/
/* */
/* Initialize printing geometry. */
/* */
/************************************************************************/
void utilInitPrintGeometry( PrintGeometry * pg )
{
appInitDocumentGeometry( &(pg->pgSheetGeometry) );
pg->pgRotatePage90= 0;
pg->pgCenterPageHorizontally= 0;
pg->pgGridRows= 1;
pg->pgGridCols= 1;
pg->pgGridHorizontal= 0;
pg->pgScalePagesToFit= 0;
return;
}
|