# CppTexturePacker **Repository Path**: ibdp/CppTexturePacker ## Basic Information - **Project Name**: CppTexturePacker - **Description**: CppTextu是一款免费的图片打包工具,软件小巧易用,主流游戏图片格式,如bmp,jpg,png可以打包为png大图,采用命令行格式,简单的命令如下: usage: CppTe - **Primary Language**: C/C++ - **License**: MIT - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/cpp-texturepacker - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-12-20 - **Last Updated**: 2023-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CppTexturePacker ![build status](https://api.travis-ci.com/wo1fsea/CppTexturePacker.svg?branch=master) A C++ Texture Packer Toolkit (The C++ version of [PyTexturePacker](https://github.com/wo1fsea/PyTexturePacker)) ## Build 1. Install [vcpkg](https://github.com/microsoft/vcpkg) ``` > git clone https://github.com/Microsoft/vcpkg.git > cd vcpkg PS> .\bootstrap-vcpkg.bat Linux:~/$ ./bootstrap-vcpkg.sh ``` 2. Use Vcpkg to Install Dependencies ``` PS> .\vcpkg install boost-test boost-format boost-filesystem cimg libpng libplist libjpeg-turbo pybind11 utfcpp Linux:~/$ ./vcpkg install boost-test boost-format boost-filesystem cimg libpng libplist libjpeg-turbo pybind11 utfcpp ``` 3. Use CMake to Build ``` > cd CppTexturePacker > mkdir ./build > cd ./build > cmake -DCMAKE_TOOLCHAIN_FILE="[your_vcpkg_root]/scripts/buildsystems/vcpkg.cmake" ../ > cmake --build ./ > ctest ```