sindresorhus / Blear

iOS app that transforms your photos into stunning blurry wallpapers for your device

Home Page:https://sindresorhus.com/blear

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maintain original image size

carlowahlstedt opened this issue · comments

When blurring a photo, it would be nice if the original photo could be maintained. Examples below of original image and the largest possible blurred image. Also would be nice if the lower end of being blurred could be more fine grained.

Image

Image

When blurring a photo, it would be nice if the original photo could be maintained.

Hmm, that's weird. It should just take a crop from the middle of the image. I think the correct solution would be #6, where you could select a custom crop area. What do you think?

Also would be nice if the lower end of being blurred could be more fine grained.

Why?

Sorry, let me attempt to better define this.

If you take the original image and set it as your background, you can use a large portion of the original image. You can get the entire width. Height includes the coffee mug plus some (iPhone 6s Plus). However, when running it through the app, it's cropped considerably more both vertically and horizontally, compared to how you can set it with the original image. Therefore, the thought would be when blurring the image, to crop it no less than what it could originally be set as.

Also would be nice if the lower end of being blurred could be more fine grained.

Wow, this was a terrible description. When blurring, if you take the slider all the way left (to the least amount that an image can be blurred) it is still "too blurry". If the threshold was increased such that when going all the way left the image is closer to be being un-blurred + 1. It seems now if the scale is 1-100 where 1 is the least amount of blur and 100 is the most that the slider does something more like 20-100.

If you take the original image and set it as your background, you can use a large portion of the original image. You can get the entire width. Height includes the coffee mug plus some (iPhone 6s Plus). However, when running it through the app, it's cropped considerably more both vertically and horizontally, compared to how you can set it with the original image. Therefore, the thought would be when blurring the image, to crop it no less than what it could originally be set as.

Agreed. That's what #6 intends to do by default, but also let you move it around and zoom.

It seems now if the scale is 1-100 where 1 is the least amount of blur and 100 is the most that the slider does something more like 20-100.

Yes, that's intentional. After a lot of testing, that seemed like the natural minimum of what people would want to be blurred. Anything less than that and it no longer fits as a wallpaper as it has too many details. It's also done for size reasons. The bundled pics are highly compressed, as compression artifacts are not visible when blurred. It's also for future performance reasons, as one way to optimize performance in the future is to initially take a low-res copy of the image and blur that instead of the current way of just blurring the full image.

I can see value, at least for me, in lowering the minimum threshold. However, I understand if you found that in testing then you'd want to leave it. Thanks for the conversation.