Skip to content

Commit

Permalink
Doc Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
k3b committed Nov 6, 2019
1 parent a358cd7 commit 4d4def7
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 15 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
While there are many apps capable of cropping images (often with additional features), they generally cause quality loss because they [re-encode to JPEG again](https://en.wikipedia.org/wiki/Lossy_compression) when saving the output file.
Loss Less Cropping and Image Rotation: Remove unwanted parts of jpg photo without quality loss.

LLCrop (the "LL" stands for lossless) can [crop JPEG images without quality loss](https://en.wikipedia.org/wiki/Lossy_compression#JPEG) because it crops the raw JPEG image without re-encoding the file. It also preserves embedded metadata (EXIF/IPTC and XMP).
While there are many apps capable of cropping images (often with additional features),
they generally cause quality loss because they
[re-encode to JPEG again](https://en.wikipedia.org/wiki/Lossy_compression) when saving the output file.

Simply load a JPEG image from the in-app image browser, adjust the rectangular selection, and save it as a new image file.
LLCrop (the "LL" stands for lossless) can [crop JPEG images without quality loss](https://en.wikipedia.org/wiki/Lossy_compression#JPEG)
because it crops the raw JPEG image without re-encoding the file. It also preserves embedded metadata (EXIF/IPTC and XMP).

Note: This app is focused on lossless JPEG image manipulation, so issues that propose additional features (e.g. support for other file formats or adding text to images) are out of scope.
Simply load a JPEG image from the in-app image browser, adjust the rectangular selection, rotate it if necessary and save it as a new image file.

Note: This app is focused on lossless JPEG image manipulation, so issues that propose additional
features (e.g. support for other file formats or adding text to images) are out of scope.

---

Expand All @@ -18,7 +24,7 @@ Note: This app is focused on lossless JPEG image manipulation, so issues that pr
* Send/SendTo/Share a cropped version of the currently selected image
* [#3](https://github.com/k3b/LosslessJpgCrop/issues/3)/[#8](https://github.com/k3b/LosslessJpgCrop/issues/8): From any app that supports [intent-action-GET-CONTENT](https://developer.android.com/reference/android/content/Intent#ACTION_GET_CONTENT) or intent-action-PICK for MIME *image/jpeg*
* Open/Pick the cropping of an uncropped image
* [#17](https://github.com/k3b/LosslessJpgCrop/issues/17) : added support for image rotation
---

## Requirements
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/de-DE/full_description.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ aus einem jpg-photo zu entfernen oder digitale
Ausschnitt-Vergrößerungen zu erstellen.

Einfach ein Jpeg-Photo laden, einen rechteckigen
Bereich auswählen und den Ausschnitt in eine neue
Bereich auswählen, ggf drehen und den Ausschnitt in eine neue
PhotoDatei speichern.

Im Gegensatz zu den meisten anderen Bildbearbeitungen
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/de-DE/short_description.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Verlustfrei JPG Photos beschneiden
Verlustfrei JPG Photos beschneiden und drehen.
17 changes: 10 additions & 7 deletions fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
LLCrop allows you to either remove unwanted outer areas from
a jpg-photo or to create zoom-ins.

Just load a jpeg photo, select a rectangle and save the
rectangle as a new photo-file.
Simply load a JPEG image from the in-app image browser,
adjust the rectangular selection, rotate it if necessary
and save it as a new image file.

Unlike most other photo-cropping software LLCrop avoids
quality-losses caused by jpg-re-encoding.
It is processing raw jpg-photo-data and preserves embedded
meta data (Exif/Iptc and xmp).
While there are many apps capable of cropping images (often with
additional features), they generally cause quality loss because
they re-encode to JPEG again when saving the output file.

"LL" in "LLCrop" means "loss-less"
LLCrop (the "LL" stands for lossless) can
crop JPEG images without quality loss
because it crops the raw JPEG image without re-encoding the file.
It also preserves embedded metadata (EXIF/IPTC and XMP).
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/short_description.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
loss less cropping: Remove unwanted parts of jpg photo without quality loss.
Loss Less Cropping and Rotation: Remove unwanted parts of jpg photo without quality loss.

0 comments on commit 4d4def7

Please sign in to comment.