PHContentEditingOutput
PHContentEditingOutput
PHContentEditingOutput Class of Photos A container to which you provide the results of editing the photo, video, or Live Photo content of a Photos asset.
class PHContentEditingOutputOverview
To edit an asset’s photo or video content:
- Fetch a `
doc://com.apple.photokit/documentation/Photos/PHAsset` object that represents the photo or video to be edited. - Call the asset’s `
doc://com.apple.photokit/documentation/Photos/PHAsset/requestContentEditingInput(with:completionHandler:)method to retrieve adoc://com.apple.photokit/documentation/Photos/PHContentEditingInput` object. This object provides information about the asset, the asset data to be edited, and a preview image for display. - Apply your edits to the asset. To allow a user to continue working with the edit later (for example, to adjust the parameters of a photo filter), create a `
doc://com.apple.photokit/documentation/Photos/PHAdjustmentData` object describing the changes. - Initialize a `
doc://com.apple.photokit/documentation/Photos/PHContentEditingOutputobject. For photo- or video-only assets, provide the edited content with thedoc://com.apple.photokit/documentation/Photos/PHContentEditingOutput/renderedContentURLproperty. For Live Photo assets, create adoc://com.apple.photokit/documentation/Photos/PHLivePhotoEditingContextobject to edit the Live Photo content and pass your content editing output to thedoc://com.apple.photokit/documentation/Photos/PHLivePhotoEditingContext/saveLivePhoto(to:options:completionHandler:)` method.
For all asset types, provide your adjustment data with the adjustmentData property of the content editing output.
- Use a photo library change block to commit the edit. (For details, see
PHPhotoLibrary.) In the block, create aPHAssetChangeRequestobject and set itscontentEditingOutputproperty to the editing output that you created.
Each PHPhotoLibrary performChanges call prompts the user for permission to edit the contents of the photo library—to edit multiple assets in one batch, create multiple PHAssetChangeRequest objects within the same change block, each with its own corresponding PHContentEditingOutput object.
You can also edit assets from photo editing extensions. In this case, instead of working with a PHAsset object, you implement methods in the PHContentEditingController protocol. Photos provides a PHContentEditingOutput object when your extension begins editing. When editing is complete, Photos requests a PHContentEditingOutput object that contains the edited asset content.