bilinearnearest
Image
ImageFilter
Defines how image sampling is performed when scaling or transforming the
image.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
bilinearnearestfunction init(self: DrawImage, context: Context): boolean
self.myImage = context:image('myImage')
self.sampler = ImageSampler(
'clamp',
'clamp',
'bilinear'
)
return true
end
Was this page helpful?