mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

examples are not considered a feature of ThorVG; hence, they are excluded from the src directory. This change allows developers to concentrate more effectively on the core ThorVG sources for practical usages.
69 lines
2.3 KiB
C++
69 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2023 - 2024 the ThorVG project. All rights reserved.
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <thread>
|
|
#include <thorvg.h>
|
|
|
|
using namespace std;
|
|
|
|
void exportGif()
|
|
{
|
|
auto animation = tvg::Animation::gen();
|
|
auto picture = animation->picture();
|
|
if (picture->load(EXAMPLE_DIR"/lottie/walker.json") != tvg::Result::Success) {
|
|
cout << "Lottie is not supported. Did you enable Lottie Loader?" << endl;
|
|
return;
|
|
}
|
|
|
|
picture->size(800, 800);
|
|
|
|
auto saver = tvg::Saver::gen();
|
|
if (saver->save(std::move(animation), "./test.gif") != tvg::Result::Success) {
|
|
cout << "Problem with saving the json file. Did you enable Gif Saver?" << endl;
|
|
return;
|
|
}
|
|
saver->sync();
|
|
cout << "Successfully exported to test.gif." << endl;
|
|
}
|
|
|
|
|
|
/************************************************************************/
|
|
/* Main Code */
|
|
/************************************************************************/
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
//Initialize ThorVG Engine
|
|
if (tvg::Initializer::init(0) == tvg::Result::Success) {
|
|
|
|
exportGif();
|
|
|
|
//Terminate ThorVG Engine
|
|
tvg::Initializer::term();
|
|
|
|
} else {
|
|
cout << "engine is not supported" << endl;
|
|
}
|
|
return 0;
|
|
}
|
|
|