Wechat-like image picker. Support select photos, videos, gif and livePhoto. Support edit image and crop video. 微信样式的图片选择器,支持预览/相册内拍照及录视频、拖拽/滑动选择,编辑图片/视频,支持多语言国际化等功能;
English | 简体中文
ZLPhotoBrowser is a Wechat-like image picker. Support select normal photos, videos, gif and livePhoto. Support edit image and crop video.
Detailed usage of Swift
and OC
, please refer to Wiki.
If you only want to use the image edit feature, please move to ZLImageEditor.
If you have good needs and suggestions in use, or encounter any bugs, please create an issue and I will reply in time.
let ps = ZLPhotoPreviewSheet()
ps.selectImageBlock = { [weak self] results, isOriginal in
// your code
}
ps.showPreview(animate: true, sender: self)
let ps = ZLPhotoPreviewSheet()
ps.selectImageBlock = { [weak self] results, isOriginal in
// your code
}
ps.showPhotoLibrary(sender: self)
// If you don’t add this key-value pair, multiple languages are not supported, and the album name defaults to English
Localized resources can be mixed YES
Privacy - Photo Library Usage Description
Privacy - Camera Usage Description
Privacy - Microphone Usage Description
● 4.6.0.1
Add:
Support SwiftUI.
Support for locked output orientation in custom camera.
Optimize the playback experience of album videos and online videos.
Add will-capture-block for customizable capture actions.
Replace ZLPhotoPreviewSheet with ZLPhotoPicker. The permission of ZLPhotoPreviewSheet will be changed to private later.
Enhance the text sticker feature by adding text outline and shadow effects.
Fix:
Fixed the bug that the time of automatically stopping recording is incorrect when clicking to record a video.
Fix the issue where the width and height calculations of some videos are inaccurate when previewing online videos.
● 4.5.8
Add:
Add video stabilization mode to camera configuration.
Fix:
Fix video recording with both torch-on and wide cameras.
Fixed the problem of freezing caused by calculating the frame when previewing network videos.
Fix the memory leak issue in the ZLEditImageViewController interface.
After the initial request for album permissions is denied, the permission guidance alert will no longer be displayed.
Correct eraser misalignment after image cropping.
● 4.5.7
Add:
Custom camera supports tap-to-record mode.
Custom camera supports wide-angle lenses on iOS 13 and above.
Custom camera allows adding a custom overlay view.
Video editing controller adds a callback block for canceling edits.
Added `ZLImagePreviewControllerDelegate` protocol to receive event callbacks in ZLImagePreviewController.
...
🇨🇳 Chinese, 🇺🇸 English, 🇯🇵 Japanese, 🇫🇷 French, 🇩🇪 German, 🇷🇺 Russian, 🇻🇳 Vietnamese, 🇰🇷 Korean, 🇲🇾 Malay, 🇮🇹 Italian, 🇮🇩 Indonesian, 🇪🇸 Spanish, 🇵🇹 Portuguese, 🇹🇷 Turkish, 🇸🇦 Arabic, 🇳🇱 Dutch.
There are four ways to use ZLPhotoBrowser in your project:
To integrate ZLPhotoBrowser into your Xcode project using CocoaPods, specify it to a target in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target 'MyApp' do
# your other pod
# ...
pod 'ZLPhotoBrowser'
end
Then, run the following command:
$ pod install
If you cannot find the latest version, you can execute
pod repo update
first
To integrate ZLPhotoBrowser into your Xcode project using Carthage, specify it in your Cartfile:
github "longitachi/ZLPhotoBrowser"
Then, run the following command to build the ZLPhotoBrowser framework:
$ carthage update
If you get an error like Building universal frameworks with common architectures is not possible. The device and simulator slices for "ZLPhotoBrowser" both build for: arm64 Rebuild with --use-xcframeworks to create an xcframework bundle instead.
Click this link.
Selection
Image editor