Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 365 Bytes

custom_components.md

File metadata and controls

12 lines (9 loc) · 365 Bytes

Custom Components

You also can change how to process the image and how to get the image files through ImageLoader and ImageFileLoader To change this, simply set it on ImagePickerComponentHolder

ImagePickerComponentHolder.getInstance()
	.setImageLoader(new GrayScaleImageLoader())
	.setImageFileLoader(new WebpImageFileLoader())

Happy coding!