尤其是ios开发中经常能遇到后缀是.car格式的文件,那么什么是car文件已经我们该如何打开和编辑呢?
CAR stands for Component Application Resource. The CAR files contain information about the assets that are available for a software application being run on the Brew Mobile Platform. This platform is used to operate applications on a variety of mobile phones. The CAR files are compiled into a binary BAR file. This file is automatically loaded when the application is run.
The .car file extension is also used for AtHome Assistant files, Biosym chemical modeler input files, NeoBook Cartoon image format files, CAR Archive compressed archive files, CardMaker card files, Carnivores Ice Age resource files, Design-Your-CD data files and Railroad Tycoon 3 car properties files.
大概意思就是car文件是包含应用程序资源的压缩文件,例如Appicon,启动图等图片资源。ios开发者很容易知道car文件是Assets.xcassets编译的,那么已知car文件我们如何修改呢?
Assets.xcassets
如果使用xcode做ios开发,那么直接打开xcode修改项目资源文件,重新编译即可。
下面介绍的主要是逆向修改car文件
一 将car文件转换为Assets.xcassets文件
百度 光程科技,打开导航在线工具(其实看到这个页面聪明的你就已经知道了真相~~)
光程科技
首先点击 Car->Assets,上传你的car文件(20M以内)提交后下载Assets.xcassets文件,这一步其实就是将car文件还原了!是不是和xcode里的一模一样~
可以直接打开Assets.xcassets修改里面的文件,注意图片修改后要修改图片目录里的Contents.json文件,聪明的你一看就懂~
光程科技
修改完成后将Assets.xcassets文件压缩为zip格式
光程科技
二 将Assets.xcassets文件转换为car文件
还是刚刚的页面,然后点击 Assets->car,点击上传刚刚的zip文件,提交后稍等片刻,car文件就生成了,是不是很简单~
Assets->car
至此就完成了car文件的修改了。