Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agustinsrg/imagetomapmc
Minecraft map art generator. Can be used to generate both structure and dat files from images.
https://github.com/agustinsrg/imagetomapmc
art generator gui-application image linux map mapart minecraft nbt schematica windows
Last synced: about 1 month ago
JSON representation
Minecraft map art generator. Can be used to generate both structure and dat files from images.
- Host: GitHub
- URL: https://github.com/agustinsrg/imagetomapmc
- Owner: AgustinSRG
- License: mit
- Created: 2021-08-16T14:43:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T17:01:19.000Z (2 months ago)
- Last Synced: 2024-11-07T17:43:15.481Z (2 months ago)
- Topics: art, generator, gui-application, image, linux, map, mapart, minecraft, nbt, schematica, windows
- Language: C++
- Homepage:
- Size: 1.69 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImageToMapMC
This is a tool for converting images to Minecraft maps, in order to import images into the game without using mods.
Written in C++ as a desktop application for Windows and Linux.
# Installation
In order to install the tool, go to the [releases](https://github.com/AgustinSRG/ImageToMapMC/releases) section in this repository and download the binaries for your system.
If there are no binaries available for your system, you can always compile them from the source code.
# Guides
- [Basic Guide](./guides/basic_guide.md)
- [Export as map files and import them into your world (Creative mode)](./guides/export_as_maps.md)
- [Build the map inside a survival world or server](./guides/export_as_structures.md)# Screenshots
![Main view](./screenshots/main_display.jpg "Main view")
![Map ingame (Minecraft)](./screenshots/mc_maps_imported.jpg "Map ingame (Minecraft)")
# Building from source code
In order to compile the project, you'll need the following:
- A C++ compiler
- [CMAKE](https://cmake.org/install/) installed.
- [ZLIB](https://zlib.net/) installed and available for your C++ compiler.
- [wxWidgets](https://www.wxwidgets.org/) installed and available for your C++ compiler.
- [libzip](https://libzip.org/) installed and available for your C++ compiler.In order to build the release version with CMAKE use:
```sh
cmake -DCMAKE_BUILD_TYPE=Release -Ssrc -Breleasecmake --build release --config Release
```After it is successfully built, your binaries will be available in the `release` folder.