Skip to content

Commit

Permalink
Merge pull request #34 from andreped/jpeg-quality
Browse files Browse the repository at this point in the history
Change default JPEG compression quality from 85 to 87
  • Loading branch information
andreped authored Sep 11, 2024
2 parents fbee633 + d4bd6b4 commit 18cb725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration test
name: Integration Tests

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion vsi2tif/vsi2tif.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def main():
parser.add_argument("-b", "--bfconvert", help="path to bfconvert tool", required=True)
parser.add_argument("-c", "--compression", help="compression technique for final image", default="jpeg")
parser.add_argument("-s", "--tilesize", help="tile size to use during both conversion steps", default=1024)
parser.add_argument("-q", "--quality", help="compression quality used with JPEG compression", default=85)
parser.add_argument("-q", "--quality", help="compression quality used with JPEG compression", default=87)
parser.add_argument("-m", "--max-mem", help="set maximum memory in the java vm", default=32)
parser.add_argument("-v", "--verbose", help="set verbosity level", default=1, type=int)
parser.add_argument(
Expand Down

0 comments on commit 18cb725

Please sign in to comment.