Skip to content

Commit

Permalink
some images are too soft for higher iso, so only use the high iso pre…
Browse files Browse the repository at this point in the history
…set for very high iso
  • Loading branch information
AerisG222 committed Feb 16, 2024
1 parent 2f88555 commit d04a4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SizePhotos/Converters/RawTherapeeConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task ConvertAsync(string sourceFile, string destFile, ExifData exif
if(exifData.Iso < 3200) {
opts.AddUserSpecifiedPp3Source(Path.Combine(AppContext.BaseDirectory, $"{prefix}_iso_low.pp3"));
}
else if(exifData.Iso < 6400) {
else if(exifData.Iso < 20_000) {
opts.AddUserSpecifiedPp3Source(Path.Combine(AppContext.BaseDirectory, $"{prefix}_iso_medium.pp3"));
}
else {
Expand Down

0 comments on commit d04a4af

Please sign in to comment.