diff --git a/README.md b/README.md index f17514f..cd81922 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

BlurThing 🌄

- Simple application for generating and customizing + Cross-platform application for generating and customizing BlurHashes from
images, with extensive controls for image manipulation.
@@ -15,15 +15,18 @@ -

- Application demo + + Made with Iced +
-## 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? diff --git a/assets/made-with-iced.svg b/assets/made-with-iced.svg new file mode 100644 index 0000000..2954f9c --- /dev/null +++ b/assets/made-with-iced.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blurthing/src/application.rs b/blurthing/src/application.rs index dae0498..f6c3e5b 100644 --- a/blurthing/src/application.rs +++ b/blurthing/src/application.rs @@ -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), @@ -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)