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 (Restart Required)
{ setNoImageProcessing(!noImageProcessing); alert("Please restart Upscayl for the changes to take effect."); }} />