Lines Matching refs:photo

3 A moving photo is a photo form that combines an image and a video, empowering a static image with d…
5 The media library provides the capabilities of accessing and managing moving photo assets, includin…
7 - [Saves Moving Photo Assets using SaveButton](#saves-moving-photo-assets)
8 - [Obtaining a Moving Photo Object](#obtaining-a-moving-photo-object)
10 - [Reading Moving Photo Assets](#reading-moving-photo-assets)
12 …bility of taking moving photos. For details, see [Moving Photos](../camera/camera-moving-photo.md).
16 Use the **SaveButton** security component to save the assets (image and video) of a moving photo.
27 …ary-kit/js-apis-photoAccessHelper.md#addresource11) to set the image and video of the moving photo.
29 …In the following example, the image and video of the moving photo are specified by **fileUri** of …
33 …dia-library-kit/js-apis-photoAccessHelper.md#applychanges11) to apply changes for the moving photo.
60 …Uri exist. imageFileUri and videoFileUri specify the image and video of the moving photo to create.
70 … console.info('create moving photo successfully, uri: ' + assetChangeRequest.getAsset().uri);
72 … console.error(`create moving photo failed with error: ${err.code}, ${err.message}`);
75 console.error('SaveButtonOnClickResult create moving photo failed');
88 - Use **Picker** to obtain a moving photo object from the media library.
90 - Create a local moving photo object of the application by passing **fileUri** of an [application f…
92 After obtaining a moving photo object, you can use [MovingPhotoView](movingphotoview-guidelines.md)…
97 …-library-kit/js-apis-photoAccessHelper.md#getfirstobject-1) to obtain the photo asset correspondin…
98 …a-library-kit/js-apis-photoAccessHelper.md#requestmovingphoto12) to obtain the moving photo object.
108 // Use Picker to select the URI of the moving photo.
116 // Obtain the photo asset corresponding to the URI.
125 // Obtain the moving photo object corresponding to the photo asset.
131 // Customize the logic for processing the moving photo.
132 console.info('request moving photo successfully, uri: ' + movingPhoto.getUri());
138 console.error(`request moving photo failed with error: ${err.code}, ${err.message}`);
145 …ry-kit/js-apis-photoAccessHelper.md#loadmovingphoto12) to load the moving photo object in the appl…
156 console.info('load moving photo successfully');
158 console.error(`load moving photo failed with error: ${err.code}, ${err.message}`);
165 …cessHelper.md#requestcontent12) to export the image and video of a moving photo to the application…
174 …(imageFileUri, videoFileUri); // Export the image and video of the moving photo to the application…
178 console.error(`request content of moving photo failed with error: ${err.code}, ${err.message}`);