Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bartoszj/acextract
A tool to list and extract content from Assets.car file.
https://github.com/bartoszj/acextract
Last synced: 2 days ago
JSON representation
A tool to list and extract content from Assets.car file.
- Host: GitHub
- URL: https://github.com/bartoszj/acextract
- Owner: bartoszj
- License: mit
- Created: 2014-12-16T21:55:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-08-15T15:13:41.000Z (about 2 years ago)
- Last Synced: 2024-10-30T13:37:46.134Z (12 days ago)
- Language: Swift
- Homepage:
- Size: 743 KB
- Stars: 390
- Watchers: 7
- Forks: 52
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
acextract
=========A tool to list and extract content from Assets.car files.
Support Mac, iOS and AppleWatch assets. Can extract PNG and PDF files.
## Features
| Feature | Status |
| -------------------- | :----: |
| iOS / iPhone / iPad | ✔ |
| macOS | ✔ |
| tvOS | ✔ |
| watchOS | ✔ |
| 4 inch iPhone | ✔ |
| Size classes | ✔ |
| Slicing | ✔ |
| Memory class | ✔ |
| Graphics class | ✔ |
| Data | ✘ |
| PDF | ✘ |
| SpriteKit Atlas | ✘ |
| AppleTV image stack | ✘ |
| iMessage stickers | ✘ |## Usage:
input is required
Usage: ./acextract [options]
-i, --input:
Path to input CAR file.
-o, --output:
Path to output directory.
-l, --list:
Print content of the CAR file without extracting.
-h, --help:
Show help message.
-v, --verbose:
Print more detail. You can use -vv or -vvv for more info.## Installation:
### From archive
- download the newest [version](https://github.com/bartoszj/acextract/releases) from GitHub
- extract archive
- copy `acextract` to `/usr/local/bin/` folder### Manual compilation
git clone https://github.com/bartoszj/acextract.git --recursive
or
git clone https://github.com/bartoszj/acextract.git
cd acextract
git submodule update --init --recursive## Example usage:
**Print content**
acextract -i ~/Assets.car -l
**Extract content**
mkdir -p ~/AssetsOutput
acextract -i ~/Assets.car -o ~/AssetsOutput## Similar tools:
- [iOS-Asset-Extractor](https://github.com/Marxon13/iOS-Asset-Extractor)