1 ## Independent JPEG Group (IJG) JPEG v9c
   2 
   3 ### IJG License
   4 ```
   5 
   6 /*
   7  * jcapimin.c
   8  *
   9  * Copyright (C) 1994-1998, Thomas G. Lane.
  10  * Modified 2003-2010 by Guido Vollbeding.
  11  * This file is part of the Independent JPEG Group's software.
  12  * For conditions of distribution and use, see the accompanying README file.
  13  */
  14 
  15 [From the README file]
  16 The authors make NO WARRANTY or representation, either express or implied,
  17 with respect to this software, its quality, accuracy, merchantability, or
  18 fitness for a particular purpose.  This software is provided "AS IS", and you,
  19 its user, assume the entire risk as to its quality and accuracy.
  20 
  21 This software is copyright (C) 1991-2018, Thomas G. Lane, Guido Vollbeding.
  22 All Rights Reserved except as specified below.
  23 
  24 Permission is hereby granted to use, copy, modify, and distribute this
  25 software (or portions thereof) for any purpose, without fee, subject to these
  26 conditions:
  27 (1) If any part of the source code for this software is distributed, then this
  28 README file must be included, with this copyright and no-warranty notice
  29 unaltered; and any additions, deletions, or changes to the original files
  30 must be clearly indicated in accompanying documentation.
  31 (2) If only executable code is distributed, then the accompanying
  32 documentation must state that "this software is based in part on the work of
  33 the Independent JPEG Group".
  34 (3) Permission for use of this software is granted only if the user accepts
  35 full responsibility for any undesirable consequences; the authors accept
  36 NO LIABILITY for damages of any kind.
  37 
  38 These conditions apply to any software derived from or based on the IJG code,
  39 not just to the unmodified library.  If you use our work, you ought to
  40 acknowledge us.
  41 
  42 Permission is NOT granted for the use of any IJG author's name or company name
  43 in advertising or publicity relating to this software or products derived from
  44 it.  This software may be referred to only as "the Independent JPEG Group's
  45 software".
  46 
  47 We specifically permit and encourage the use of this software as the basis of
  48 commercial products, provided that all warranty or liability claims are
  49 assumed by the product vendor.
  50 
  51 ```