@@ -49,12 +49,12 @@ import { MagickErrorInfo } from './types/magick-error-info';
49
49
import { MagickFormat } from './enums/magick-format' ;
50
50
import { MagickGeometry as MagickGeometry , IMagickGeometry } from './types/magick-geometry' ;
51
51
import { MagickImageCollection , IMagickImageCollection } from './magick-image-collection' ;
52
- import { MagickOrientation } from './enums/magick-orientation' ;
53
52
import { MagickReadSettings } from './settings/magick-read-settings' ;
54
53
import { MagickRectangle } from './internal/magick-rectangle' ;
55
54
import { MagickSettings } from './settings/magick-settings' ;
56
55
import { MorphologySettings } from './settings/morphology-settings' ;
57
56
import { NativeInstance } from './native-instance' ;
57
+ import { Orientation } from './enums/orientation' ;
58
58
import { NoiseType } from './enums/noise-type' ;
59
59
import { Percentage } from './types/percentage' ;
60
60
import { PerceptualHash , IPerceptualHash } from './statistics/perceptual-hash' ;
@@ -289,7 +289,7 @@ export interface IMagickImage extends IDisposable {
289
289
/**
290
290
* Gets or sets the photo orientation of the image.
291
291
*/
292
- orientation : MagickOrientation ;
292
+ orientation : Orientation ;
293
293
294
294
/**
295
295
* Event that will be raised when progress is reported by this image.
@@ -2269,10 +2269,10 @@ export class MagickImage extends NativeInstance implements IMagickImage {
2269
2269
} ) ;
2270
2270
}
2271
2271
2272
- get orientation ( ) : MagickOrientation {
2273
- return < MagickOrientation > ImageMagick . _api . _MagickImage_Orientation_Get ( this . _instance ) ;
2272
+ get orientation ( ) : Orientation {
2273
+ return < Orientation > ImageMagick . _api . _MagickImage_Orientation_Get ( this . _instance ) ;
2274
2274
}
2275
- set orientation ( value : MagickOrientation ) {
2275
+ set orientation ( value : Orientation ) {
2276
2276
ImageMagick . _api . _MagickImage_Orientation_Set ( this . _instance , value ) ;
2277
2277
}
2278
2278
0 commit comments