files/en-us/web/api/browsercapturemediastreamtrack/cropto/index.md
{{APIRef("Screen Capture API")}}{{SeeCompatTable}}{{securecontext_header}}
The cropTo() method of the {{domxref("BrowserCaptureMediaStreamTrack")}} interface crops a self-capture stream to the area in which a specified DOM element is rendered.
cropTo(cropTarget)
cropTarget
null/undefined, in which case any previously-set cropping is removed from the track.A {{jsxref("Promise")}} that resolves to {{jsxref("undefined")}}.
The promise will reject if:
kind is not "video", or its readyState is not "live".cropTarget is not a {{domxref("CropTarget")}} instance, null, or undefined.cropTarget was created in a tab other than the one being captured.[!NOTE] In Chromium, if a track has clones,
cropTo()will reject (see Chrome issue 41482026).
// Options for getDisplayMedia()
const displayMediaOptions = {
preferCurrentTab: true,
};
// Create crop target from DOM element
const demoElem = document.querySelector("#demo");
const cropTarget = await CropTarget.fromElement(demoElem);
// Capture video stream from user's webcam and isolate video track
const stream =
await navigator.mediaDevices.getDisplayMedia(displayMediaOptions);
const [track] = stream.getVideoTracks();
// Crop video track
await track.cropTo(cropTarget);
// Broadcast cropped stream in <video> element
videoElem.srcObject = stream;
See Using the Element Capture and Region Capture APIs for in-context example code.
You can stop the cropping by making a call to cropTo() on a previously-cropped track, passing an argument of null to it:
// Stop cropping
await track.cropTo(null);
{{Specifications}}
{{Compat}}