saveImageToGallery
Bắt đầu hỗ trợ ở phiên bản:
- SDK: 2.16.0
Lưu ý
Cần xin cấp quyền tại trang Quản lý ứng dụng
Lưu ảnh vào thư viện media của thiết bị.
Parameters
Object object
Property | Type | Default | Required | Description | Minimum Version |
---|---|---|---|---|---|
imageBase64Data | string | Giá trị base64 của ảnh cần lưu. | |||
imageUrl | string | Đường dẫn của ảnh cần lưu | |||
onProgress | function | Callback function tiến độ tải file. Với progress là number từ 0 đến 100% | |||
success | function | Callback function khi gọi api thành công | |||
fail | function | Callback function khi gọi api thất bại |
Sample Code
import { saveImageToGallery } from "zmp-sdk/apis";
saveImageToGallery({
imageUrl: "https://sample-videos.com/img/Sample-jpg-image-50kb.jpg",
onProgress: (progress) => {
console.log(progress);
},
success: () => {
// xử lý khi gọi api thành công
},
fail: (error) => {
// xử lý khi gọi api thất bại
console.log(error);
},
});
Hoặc
import { saveImageToGallery } from "zmp-sdk/apis";
const saveImage = async () => {
try {
await saveImageToGallery({
imageUrl: "https://sample-videos.com/img/Sample-jpg-image-50kb.jpg",
onProgress: (progress) => {
console.log(progress);
},
});
} catch (error) {
// xử lý khi gọi api thất bại
console.log(error);
}
};
Errors
Bắt đầu hỗ trợ:
- API phiên bản: 2.21.0
Code | Message | Note |
---|---|---|
-2005 | Unable to save media |