Background Removal
You can use the removeBackground option to generatively remove the background from an image, for example:
<script> import { CldImage } from 'svelte-cloudinary';</script>
<CldImage width="960" height="600" src="images/turtle" alt="turtle image" removeBackground />import { getCldImageUrl } from 'svelte-cloudinary';
const url = getCldImageUrl({ src: 'images/turtle', removeBackground: true, width: 960, height: 600,});