👋 Demo Project
GIF2SS converts animated GIF files into formats ready for use in games, apps, and design tools. ## Endpoints **POST /to-spritesheet** Packs all frames of a GIF into a single PNG sprite sheet arranged in a grid. Useful for game engines, CSS animations, and texture atlases. **POST /to-frames** Extracts every frame of a GIF as an individual PNG and returns them in a ZIP archive. Useful for video…
👋 Demo Project endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
Login /auth/login |
|
| POST |
Create User (Sign Up) /auth/user |
|
| GET |
Me /auth/me |
|
| DELETE |
Delete Product /catalog/product/{id} |
|
| GET |
Get Products in Category /catalog/category/{category}/products |
|
| GET |
Get Categories /catalog/categories |
|
| GET |
Get Products /catalog/products |
|
| GET |
Get Product /catalog/product/{id} |
|
| POST |
Create Product /catalog/product |
|
| POST |
Add to Order /order/{id}/product |
|
| DELETE |
Delete from Order /order/{id}/product/{productId} |
|
| DELETE |
Cancel Order /order/{id} |
|
| POST |
Create Order /order/new |
|
| GET |
Get User Orders /order/my |
|
| GET |
Get Order /order/{id} |
|
| POST |
Place Order /order/{id}/place |