~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

Viewing changes to fpcsrc/packages/base/imagemagick/wand/pixel_iterator.inc

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  Copyright 1999-2005 ImageMagick Studio LLC, a non-profit organization
 
3
  dedicated to making software imaging solutions freely available.
 
4
  
 
5
  You may not use this file except in compliance with the License.
 
6
  obtain a copy of the License at
 
7
  
 
8
    http://www.imagemagick.org/script/license.php
 
9
  
 
10
  Unless required by applicable law or agreed to in writing, software
 
11
  distributed under the License is distributed on an "AS IS" BASIS,
 
12
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
  See the License for the specific language governing permissions and
 
14
  limitations under the License.
 
15
 
 
16
  Pixel Iterator Methods.
 
17
}
 
18
 
 
19
type
 
20
  PixelIterator = record
 
21
    id: Cardinal;
 
22
 
 
23
    name: array[0..MaxTextExtent] of char;
 
24
 
 
25
    exception: ExceptionInfo;
 
26
 
 
27
    view: PViewInfo;
 
28
 
 
29
    region: RectangleInfo;
 
30
 
 
31
    y: Integer;
 
32
 
 
33
    pixel_wand: PPPixelWand;
 
34
 
 
35
    debug: MagickBooleanType;
 
36
 
 
37
    signature: Cardinal;
 
38
  end;
 
39
  
 
40
  PPixelIterator = ^PixelIterator;
 
41
 
 
42
 
 
43
function PixelGetIteratorException(const iterator: PPixeliterator;
 
44
 severity: PExceptionType): PChar; cdecl; external WandExport;
 
45
 
 
46
function IsPixelIterator(const iterator: PPixeliterator): MagickBooleanType; cdecl; external WandExport;
 
47
function PixelClearIteratorException(iterator: PPixeliterator): MagickBooleanType; cdecl; external WandExport;
 
48
function PixelSetIteratorRow(iterator: PPixeliterator;
 
49
 const row: Integer): MagickBooleanType; cdecl; external WandExport;
 
50
function PixelSyncIterator(iterator: PPixeliterator): MagickBooleanType; cdecl; external WandExport;
 
51
 
 
52
function DestroyPixelIterator(iterator: PPixeliterator): PPixelIterator; cdecl; external WandExport;
 
53
function NewPixelIterator(wand: PMagickWand): PPixelIterator; cdecl; external WandExport;
 
54
function NewPixelRegionIterator(
 
55
 wand: PMagickWand; const x, y: Integer; const columns, rows: Cardinal;
 
56
 const modify: MagickBooleanType): PPixelIterator; cdecl; external WandExport;
 
57
 
 
58
function PixelGetNextIteratorRow(iterator: PPixeliterator; var wandCount: Cardinal): PPPixelWand; cdecl; external WandExport;
 
59
function PixelGetPreviousIteratorRow(iterator: PPixeliterator; var wandCount: Cardinal): PPPixelWand; cdecl; external WandExport;
 
60
 
 
61
procedure ClearPixelIterator(iterator: PPixeliterator); cdecl; external WandExport;
 
62
procedure PixelResetIterator(iterator: PPixeliterator); cdecl; external WandExport;
 
63
procedure PixelSetFirstIteratorRow(iterator: PPixeliterator); cdecl; external WandExport;
 
64
procedure PixelSetLastIteratorRow(iterator: PPixeliterator); cdecl; external WandExport;
 
65
 
 
66
{
 
67
  Deprecated.
 
68
}
 
69
{extern WandExport char
 
70
  *PixelIteratorGetException(const PixelIterator *,ExceptionType *);
 
71
 
 
72
extern WandExport PixelWand
 
73
  **PixelGetNextRow(PixelIterator *);}
 
74