Skip to content

Commit

Permalink
Change default JPEG compression quality from 85 to 87
Browse files Browse the repository at this point in the history
  • Loading branch information
andreped committed Sep 11, 2024
1 parent fbee633 commit 66305d3
Showing 1 changed file with 1 addition and 1 deletion.
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 66305d3

Please sign in to comment.