ios-wallpaper-extractor
v0.2.2
Published
Extract wallpapers from iOS backups
Downloads
9
Maintainers
Readme
iOS Wallpaper Extractor
This tool extracts iOS wallpaper images from a backup using the Manifest.db
database, images are converted from the cpbitmap format using cpbitmap-to-png. Encrypted backups are first decrypted with irestore.
iOS backups are located in ~/Library/Application Support/MobileSync/Backup/
.
Usage
npx ios-wallpaper-extractor <backup path> <output path>
const extractor = require('ios-wallpaper-extractor');
extractor('/Users/dave/Library/Application Support/MobileSync/Backup/00008110-001438282142401E', 'wallpapers').then(output => {
console.log(output);
}).catch(err => {
console.error(err);
});
License
MIT.