0.2.2 • Published 1 year ago

ios-wallpaper-extractor v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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.