Compare commits
No commits in common. "main" and "build" have entirely different histories.
@ -1,43 +0,0 @@
|
|||||||
name: Run Build
|
|
||||||
run-name: ${{ gitea.actor }} is building tview
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run-build-arch:
|
|
||||||
container:
|
|
||||||
image: archlinux:multilib-devel
|
|
||||||
steps:
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pacman -Sy --noconfirm sdl2 mesa-utils exiv2 cmake nodejs git && pacman -Syu --noconfirm
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Run ls
|
|
||||||
run: ls
|
|
||||||
- name: Generate build files
|
|
||||||
run: cmake .
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build .
|
|
||||||
run-build-ubuntu:
|
|
||||||
container:
|
|
||||||
image: ubuntu:24.04
|
|
||||||
steps:
|
|
||||||
- name: Install dependencies
|
|
||||||
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Generate build files
|
|
||||||
run: cmake .
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build .
|
|
||||||
run-build-debian:
|
|
||||||
container:
|
|
||||||
image: debian:bookworm
|
|
||||||
steps:
|
|
||||||
- name: Install dependencies
|
|
||||||
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Generate build files
|
|
||||||
run: cmake .
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build .
|
|
@ -1,9 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.10)
|
cmake_minimum_required(VERSION 3.10)
|
||||||
|
|
||||||
if(NOT CMAKE_BUILD_TYPE)
|
|
||||||
set(CMAKE_BUILD_TYPE Release)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||||
|
|
||||||
@ -50,9 +46,5 @@ find_package(OpenGL REQUIRED)
|
|||||||
find_package(exiv2 REQUIRED)
|
find_package(exiv2 REQUIRED)
|
||||||
include_directories(${SDL2_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIRS})
|
include_directories(${SDL2_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIRS})
|
||||||
|
|
||||||
set(CMAKE_CXX_FLAGS "-Wall -Wextra")
|
|
||||||
set(CMAKE_CXX_FLAGS_DEBUG "-g")
|
|
||||||
set(CMAKE_CXX_FLAGS_RELEASE "-O2")
|
|
||||||
|
|
||||||
add_executable(tview ${SOURCES})
|
add_executable(tview ${SOURCES})
|
||||||
target_link_libraries(tview ${SDL2_LIBRARIES} ${OPENGL_LIBRARIES} exiv2lib)
|
target_link_libraries(tview ${SDL2_LIBRARIES} ${OPENGL_LIBRARIES} exiv2lib)
|
||||||
|
118
README.md
@ -1,93 +1,57 @@
|
|||||||
# tview
|
|
||||||
> A (relatively) fast, lightweight, and useful image viewer.
|
|
||||||
|
|
||||||

|
# How to Build
|
||||||
|
|
||||||
# Features
|
## Windows with Visual Studio's IDE
|
||||||
- Supports most common image formats
|
|
||||||
- EXIF Viewing
|
|
||||||
- Histogram Calculation
|
|
||||||
- Toggle image filtering
|
|
||||||
- Pixel level details
|
|
||||||
- Color tooltip
|
|
||||||
# Gallery
|
|
||||||
## Tooltip
|
|
||||||
Toggle the tooltip by pressing `t`
|
|
||||||

|
|
||||||
|
|
||||||
## Detail Views
|
Use the provided project file (.vcxproj). Add to solution (imgui_examples.sln) if necessary.
|
||||||
Toggle detail modes by pressing `d`
|
|
||||||
|
|
||||||
| Normal Arrow | Hex Color | RGB 255 Color | RGB Float Color |
|
## Windows with Visual Studio's CLI
|
||||||
| --------------------- | ------------------- | ----------------------- | ------------------------- |
|
|
||||||
|  |  |  |  |
|
|
||||||
## Image Filtering
|
|
||||||
Toggle Filtering by pressing
|
|
||||||
|
|
||||||
| Filtering Off | Filtering On |
|
Use build_win32.bat or directly:
|
||||||
| ---------------------- | --------------------- |
|
|
||||||
|  |  |
|
|
||||||
# Usage
|
|
||||||
`tview PATH/TO/IMAGE`
|
|
||||||
|
|
||||||
Press `h` to show the help dialog within the program.
|
|
||||||
## Mouse
|
|
||||||
Scroll to zoom.
|
|
||||||
Click and drag to pan.
|
|
||||||
|
|
||||||
## Keyboard
|
|
||||||
- `h` - Show help
|
|
||||||
- `c`- Toggle Histogram
|
|
||||||
- `e`- Toggle EXIF data
|
|
||||||
- `d`- Cycle [[#Detail Views]] (default off)
|
|
||||||
- `a` - Toggle image filtering (default off)
|
|
||||||
- `g` - Toggle grid (only visible at pixel level)
|
|
||||||
- `r`- Rotate image 90 degrees clockwise
|
|
||||||
- `q` - Quit
|
|
||||||
|
|
||||||
# Installing
|
|
||||||
## Requirements to Run
|
|
||||||
- SDL2
|
|
||||||
- OpenGL
|
|
||||||
- Libexiv2
|
|
||||||
|
|
||||||
## Requirements to build
|
|
||||||
In addition to the run requirements
|
|
||||||
- CMake
|
|
||||||
- C++ Compiler (g++/clang++)
|
|
||||||
### On Ubuntu
|
|
||||||
```
|
```
|
||||||
apt install --no-install-recommends build-essential cmake libsdl2-dev libexiv2-dev mesa-utils
|
set SDL2_DIR=path_to_your_sdl2_folder
|
||||||
```
|
cl /Zi /MD /utf-8 /I.. /I..\.. /I%SDL2_DIR%\include main.cpp ..\..\backends\imgui_impl_sdl2.cpp ..\..\backends\imgui_impl_opengl3.cpp ..\..\imgui*.cpp /FeDebug/example_sdl2_opengl3.exe /FoDebug/ /link /libpath:%SDL2_DIR%\lib\x86 SDL2.lib SDL2main.lib opengl32.lib /subsystem:console
|
||||||
### On Debian
|
# ^^ include paths ^^ source files ^^ output exe ^^ output dir ^^ libraries
|
||||||
```
|
# or for 64-bit:
|
||||||
apt install --no-install-recommends build-essential cmake libsdl2-dev libexiv2-dev mesa-utils
|
cl /Zi /MD /utf-8 /I.. /I..\.. /I%SDL2_DIR%\include main.cpp ..\..\backends\imgui_impl_sdl2.cpp ..\..\backends\imgui_impl_opengl3.cpp ..\..\imgui*.cpp /FeDebug/example_sdl2_opengl3.exe /FoDebug/ /link /libpath:%SDL2_DIR%\lib\x64 SDL2.lib SDL2main.lib opengl32.lib /subsystem:console
|
||||||
```
|
|
||||||
### On Arch
|
|
||||||
```
|
|
||||||
pacman -Sy sdl2 mesa-utils exiv2 cmake base-devel
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Building
|
## Linux and similar Unixes
|
||||||
Clone the repository
|
|
||||||
|
Use our Makefile or directly:
|
||||||
```
|
```
|
||||||
git clone https://git.dws.rip/dubey/tview.git
|
c++ `sdl2-config --cflags` -I .. -I ../.. -I ../../backends
|
||||||
|
main.cpp ../../backends/imgui_impl_sdl2.cpp ../../backends/imgui_impl_opengl3.cpp ../../imgui*.cpp
|
||||||
|
`sdl2-config --libs` -lGL -ldl
|
||||||
```
|
```
|
||||||
|
|
||||||
Change directory into the repository
|
## macOS
|
||||||
|
|
||||||
|
Use our Makefile or directly:
|
||||||
```
|
```
|
||||||
cd tview
|
brew install sdl2
|
||||||
|
c++ `sdl2-config --cflags` -I .. -I ../.. -I ../../backends
|
||||||
|
main.cpp ../../backends/imgui_impl_sdl2.cpp ../../backends/imgui_impl_opengl3.cpp ../../imgui*.cpp
|
||||||
|
`sdl2-config --libs` -framework OpenGl -framework CoreFoundation
|
||||||
```
|
```
|
||||||
|
|
||||||
Generate build files and trigger build
|
## Emscripten
|
||||||
```
|
|
||||||
cmake .
|
|
||||||
cmake --build .
|
|
||||||
```
|
|
||||||
|
|
||||||
You will now have a file called `tview` in the repository root, you can copy this into your path:
|
**Building**
|
||||||
```
|
|
||||||
sudo mv ./tview /usr/local/bin/tview
|
|
||||||
```
|
|
||||||
|
|
||||||
`tview` is now installed on your system
|
You need to install Emscripten from https://emscripten.org/docs/getting_started/downloads.html, and have the environment variables set, as described in https://emscripten.org/docs/getting_started/downloads.html#installation-instructions
|
||||||
|
|
||||||
|
- Depending on your configuration, in Windows you may need to run `emsdk/emsdk_env.bat` in your console to access the Emscripten command-line tools.
|
||||||
|
- You may also refer to our [Continuous Integration setup](https://github.com/ocornut/imgui/tree/master/.github/workflows) for Emscripten setup.
|
||||||
|
- Then build using `make -f Makefile.emscripten` while in the current directory.
|
||||||
|
|
||||||
|
**Running an Emscripten project**
|
||||||
|
|
||||||
|
To run on a local machine:
|
||||||
|
- `make -f Makefile.emscripten serve` will use Python3 to spawn a local webserver, you can then browse http://localhost:8000 to access your build.
|
||||||
|
- Otherwise, generally you will need a local webserver. Quoting [https://emscripten.org/docs/getting_started](https://emscripten.org/docs/getting_started/Tutorial.html#generating-html):<br>
|
||||||
|
_"Unfortunately several browsers (including Chrome, Safari, and Internet Explorer) do not support file:// [XHR](https://emscripten.org/docs/site/glossary.html#term-xhr) requests, and can’t load extra files needed by the HTML (like a .wasm file, or packaged file data as mentioned lower down). For these browsers you’ll need to serve the files using a [local webserver](https://emscripten.org/docs/getting_started/FAQ.html#faq-local-webserver) and then open http://localhost:8000/hello.html."_
|
||||||
|
- Emscripten SDK has a handy `emrun` command: `emrun web/index.html --browser firefox` which will spawn a temporary local webserver (in Firefox). See https://emscripten.org/docs/compiling/Running-html-files-with-emrun.html for details.
|
||||||
|
- You may use Python 3 builtin webserver: `python -m http.server -d web` (this is what `make serve` uses).
|
||||||
|
- You may use Python 2 builtin webserver: `cd web && python -m SimpleHTTPServer`.
|
||||||
|
- If you are accessing the files over a network, certain browsers, such as Firefox, will restrict Gamepad API access to secure contexts only (e.g. https only).
|
||||||
|
7
main.cpp
@ -8,7 +8,6 @@
|
|||||||
#include "lib/imgui_internal.h"
|
#include "lib/imgui_internal.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <exiv2/tags.hpp>
|
#include <exiv2/tags.hpp>
|
||||||
#include <exiv2/version.hpp>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -40,8 +39,6 @@
|
|||||||
|
|
||||||
#include "lib/histogram.h"
|
#include "lib/histogram.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
struct Args : public argparse::Args {
|
struct Args : public argparse::Args {
|
||||||
std::string &fpath = arg("path to the image");
|
std::string &fpath = arg("path to the image");
|
||||||
};
|
};
|
||||||
@ -86,11 +83,7 @@ EXIFData printExifData(const std::string& imagePath) {
|
|||||||
d.CameraMake = "NULL";
|
d.CameraMake = "NULL";
|
||||||
try {
|
try {
|
||||||
// Load the image
|
// Load the image
|
||||||
#if EXIV2_TEST_VERSION(0,28,0)
|
|
||||||
Exiv2::Image::UniquePtr img = Exiv2::ImageFactory::open(imagePath);
|
Exiv2::Image::UniquePtr img = Exiv2::ImageFactory::open(imagePath);
|
||||||
#else
|
|
||||||
Exiv2::Image::AutoPtr img = Exiv2::ImageFactory::open(imagePath);
|
|
||||||
#endif
|
|
||||||
if (img.get() == 0) {
|
if (img.get() == 0) {
|
||||||
std::cerr << "Error: Could not open image file " << imagePath << std::endl;
|
std::cerr << "Error: Could not open image file " << imagePath << std::endl;
|
||||||
return d;
|
return d;
|
||||||
|
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 565 KiB |
Before Width: | Height: | Size: 712 KiB |
Before Width: | Height: | Size: 1.6 MiB |