Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
sonodima committed Sep 4, 2024
1 parent 034b0f3 commit aa094f2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 8 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center" style="margin-top: 24px;">
<div>
<h1>BlurThing 🌄</h1>
<span>Simple application for generating and customizing <a href="https://blurha.sh">
<span>Cross-platform application for generating and customizing <a href="https://blurha.sh">
BlurHashes</a> from<br/>images, with extensive controls for
image manipulation.</span>
</div>
Expand All @@ -15,15 +15,18 @@
<a href="LICENSE">
<img src="https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge"/>
</a>
<br/><br/>
<img src="assets/demo.gif" alt="Application demo" width="80%" />
<a href="https://github.com/iced-rs/iced">
<img alt="Made with Iced" src="assets/made-with-iced.svg" height="28px" />
</a>
</div>

## Usage
## Basic Usage

1. Open an image file with the open file dialog
2. Adjust the image manipulation parameters to your liking
3. Copy the blur hash to the clipboard
3. Copy the blur hash to the clipboard, or alternatively export the blurred rastered image

![Application Demo](assets/demo.gif)

## How is this useful?

Expand Down
15 changes: 15 additions & 0 deletions assets/made-with-iced.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions blurthing/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,9 +466,9 @@ impl BlurThing {
.on_release(Interaction::SaveParameters),
);

let tools = Row::new()
let rotate = Row::new()
.push(
Column::new().push(Text::new("Rotation")).push(
Column::new().push(Text::new("Rotate")).push(
Text::new("Rotate the input image by 90 degrees")
.style(styles::Text::Subtle)
.size(12),
Expand Down Expand Up @@ -533,7 +533,7 @@ impl BlurThing {
Column::new()
.push(x_components)
.push(y_components)
.push(tools)
.push(rotate)
.push(smoothness)
.push(hue_rotation)
.push(brightness)
Expand Down

0 comments on commit aa094f2

Please sign in to comment.