# ImStudio **Repository Path**: stoneold/ImStudio ## Basic Information - **Project Name**: ImStudio - **Description**: No description available - **Primary Language**: C++ - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-01 - **Last Updated**: 2026-06-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ImStudio [![Linux Build Status](https://github.com/Raais/ImStudio/actions/workflows/linux.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=linux) [![Windows Build Status](https://github.com/Raais/ImStudio/actions/workflows/windows.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=windows) [![macOS Build Status](https://github.com/Raais/ImStudio/actions/workflows/macos.yml/badge.svg)](https://github.com/Raais/ImStudio/actions?workflow=macOS) Real-time GUI layout creator/editor for [Dear ImGui](https://github.com/ocornut/imgui) ### [Try Online](https://raais.github.io/ImStudio) ![Screenshot](https://user-images.githubusercontent.com/64605172/166310444-d7520e69-0d74-4dd8-a84e-2144504ab466.png) Inspired by [Code-Building/ImGuiBuilder](https://github.com/Code-Building/ImGuiBuilder) ## Features - Drag edit - Property edit - Covers most of the commonly used default widgets (primitives, data inputs, and other miscellaneous) - Child windows - Real-time generation - Export to clipboard - Useful tools (Style & Color export, Demo Window, etc.) - Helpful resources (external) ## Installation ### Build Dependencies - [CMake](https://cmake.org/download) - [GLFW](https://www.glfw.org/download) \ \*Downloaded during build on Windows and MacOS \ **Debian:** sudo apt-get install libglfw3 libglfw3-dev \ **Arch:** sudo pacman -S glfw \ **Fedora:** sudo dnf install glfw glfw-devel ### Instructions ### Linux #### Build ```bash git clone --depth 1 https://github.com/Raais/ImStudio.git cd ImStudio ./build.sh ``` ### Windows #### Pre-Built [Installer x64](https://github.com/Raais/ImStudio/releases) #### Build Make sure MSVC is in your environment (eg. x64 Native Tools Command Prompt) ```cmd "C:\Program Files\Git\bin\git.exe" clone --depth 1 https://github.com/Raais/ImStudio.git cd ImStudio md build cd build "C:\Program Files\CMake\bin\cmake.exe" .. -DCMAKE_BUILD_TYPE=Release "C:\Program Files\CMake\bin\cmake.exe" --build . --config Release ``` ## Credits Thanks to [Omar](https://github.com/ocornut) for [Dear ImGui](https://github.com/ocornut/imgui).\ Thanks to [Code-Building](https://github.com/Code-Building) for the inspiration.