@@ -57,9 +57,8 @@ public class JXLCoder {
57
57
public static func decode( srcStream: InputStream ,
58
58
rescale: CGSize = . zero,
59
59
scale: Int = 1 ,
60
- pixelFormat: JXLPreferredPixelFormat = . optimal,
61
- sampler: JxlSampler = . hann) throws -> JXLPlatformImage {
62
- return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler: sampler, scale: Int32 ( scale) )
60
+ pixelFormat: JXLPreferredPixelFormat = . optimal) throws -> JXLPlatformImage {
61
+ return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32 ( scale) )
63
62
}
64
63
65
64
/***
@@ -70,13 +69,12 @@ public class JXLCoder {
70
69
public static func decode( url: URL ,
71
70
rescale: CGSize = . zero,
72
71
scale: Int = 1 ,
73
- pixelFormat: JXLPreferredPixelFormat = . optimal,
74
- sampler: JxlSampler = . lanczos) throws -> JXLPlatformImage {
72
+ pixelFormat: JXLPreferredPixelFormat = . optimal) throws -> JXLPlatformImage {
75
73
guard let srcStream = InputStream ( url: url) else {
76
74
throw NSError ( domain: " JXLCoder " , code: 500 ,
77
75
userInfo: [ NSLocalizedDescriptionKey: " JXLCoder cannot open provided URL " ] )
78
76
}
79
- return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler : sampler , scale: Int32 ( scale) )
77
+ return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32 ( scale) )
80
78
}
81
79
82
80
/***
@@ -87,10 +85,9 @@ public class JXLCoder {
87
85
public static func decode( data: Data ,
88
86
rescale: CGSize = . zero,
89
87
scale: Int = 1 ,
90
- pixelFormat: JXLPreferredPixelFormat = . optimal,
91
- sampler: JxlSampler = . lanczos) throws -> JXLPlatformImage {
88
+ pixelFormat: JXLPreferredPixelFormat = . optimal) throws -> JXLPlatformImage {
92
89
let srcStream = InputStream ( data: data)
93
- return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, sampler : sampler , scale: Int32 ( scale) )
90
+ return try shared. decode ( srcStream, rescale: rescale, pixelFormat: pixelFormat, scale: Int32 ( scale) )
94
91
}
95
92
96
93
/***
0 commit comments