preview_parser.add_argument('--resolution',type=int,metavar='RES',default=80,help='Resolution of displayed image. Defaults to 80.')
preview_parser.add_argument('--resolution',type=int,metavar='RES',default=80,help='Resolution of displayed image. Defaults to 80.')
preview_parser.add_argument('--absolute_values',action='store_false',help='By default set the maximum value to be 255 so the contrast is strong. This turns it off.')
preview_parser.add_argument('--absolute_values',action='store_false',help='By default set the maximum value to be 255 so the contrast is strong. This turns it off.')
# File Convert
preview_parser=subparsers.add_parser('convert',help='Convert files to different formats without loading the entire file into memory')
preview_parser.add_argument('input_path',type=str,metavar='Input path',help='Path to image that will be converted')
preview_parser.add_argument('output_path',type=str,metavar='Output path',help='Path to save converted image')