type ProcessImageToggleProps = { noImageProcessing: boolean; setNoImageProcessing: (arg: any) => void; }; const ProcessImageToggle = ({ noImageProcessing, setNoImageProcessing, }: ProcessImageToggleProps) => { return (

DON'T POST-PROCESS IMAGE

If enabled, the image will not be converted or scaled or post-processed. This will output the original AI upscaling result as-is. Use this if you're having issues with file-size or color banding.

{ setNoImageProcessing(!noImageProcessing); }} />
); }; export default ProcessImageToggle;