blob: 98bdb1c57f490d1a4f3f91ad3d9722e780955326 (
plain)
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
|
/*****************************************************************************/
// Copyright 2006 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in
// accordance with the terms of the Adobe license agreement accompanying it.
/*****************************************************************************/
/* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_tile_iterator.h#1 $ */
/* $DateTime: 2012/05/30 13:28:51 $ */
/* $Change: 832332 $ */
/* $Author: tknoll $ */
/*****************************************************************************/
#ifndef __dng_tile_iterator__
#define __dng_tile_iterator__
/*****************************************************************************/
#include "dng_classes.h"
#include "dng_point.h"
#include "dng_rect.h"
#include "dng_types.h"
/*****************************************************************************/
class dng_tile_iterator
{
private:
dng_rect fArea;
int32 fTileWidth;
int32 fTileHeight;
int32 fTileTop;
int32 fTileLeft;
int32 fRowLeft;
int32 fLeftPage;
int32 fRightPage;
int32 fTopPage;
int32 fBottomPage;
int32 fHorizontalPage;
int32 fVerticalPage;
public:
dng_tile_iterator (const dng_image &image,
const dng_rect &area);
dng_tile_iterator (const dng_point &tileSize,
const dng_rect &area);
dng_tile_iterator (const dng_rect &tile,
const dng_rect &area);
bool GetOneTile (dng_rect &tile);
private:
void Initialize (const dng_rect &tile,
const dng_rect &area);
};
/*****************************************************************************/
#endif
/*****************************************************************************/
|