/iOS-Wallpaper-Extractor

📱Extract wallpapers from iOS backups

Primary LanguageJavaScript

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.