Merge pull request #1580 from hugovk/linkcheck

'make linkcheck' fixes
This commit is contained in:
wiredfool 2015-12-14 20:49:12 +00:00
commit 286c5e84db
4 changed files with 10 additions and 8 deletions

View File

@ -27,7 +27,7 @@ Subsampling
Subsampling is the practice of encoding images by implementing less resolution Subsampling is the practice of encoding images by implementing less resolution
for chroma information than for luma information. for chroma information than for luma information.
(ref.: http://en.wikipedia.org/wiki/Chroma_subsampling) (ref.: https://en.wikipedia.org/wiki/Chroma_subsampling)
Possible subsampling values are 0, 1 and 2 that correspond to 4:4:4, 4:2:2 and Possible subsampling values are 0, 1 and 2 that correspond to 4:4:4, 4:2:2 and
4:1:1 (or 4:2:0?). 4:1:1 (or 4:2:0?).
@ -41,8 +41,8 @@ Quantization tables
They are values use by the DCT (Discrete cosine transform) to remove They are values use by the DCT (Discrete cosine transform) to remove
*unnecessary* information from the image (the lossy part of the compression). *unnecessary* information from the image (the lossy part of the compression).
(ref.: http://en.wikipedia.org/wiki/Quantization_matrix#Quantization_matrices, (ref.: https://en.wikipedia.org/wiki/Quantization_matrix#Quantization_matrices,
http://en.wikipedia.org/wiki/JPEG#Quantization) https://en.wikipedia.org/wiki/JPEG#Quantization)
You can get the quantization tables of a JPEG with:: You can get the quantization tables of a JPEG with::

View File

@ -1,3 +1,5 @@
# encoding: utf-8
#
# The Python Imaging Library. # The Python Imaging Library.
# $Id$ # $Id$
# #

View File

@ -52,12 +52,12 @@ Compilers
Download and install: Download and install:
* `Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 * `Microsoft Windows SDK for Windows 7 and .NET Framework 3.5
SP1 <http://www.microsoft.com/en-us/download/details.aspx?id=3138>`_ SP1 <https://www.microsoft.com/en-us/download/details.aspx?id=3138>`_
* `Microsoft Windows SDK for Windows 7 and .NET Framework * `Microsoft Windows SDK for Windows 7 and .NET Framework
4 <http://www.microsoft.com/en-us/download/details.aspx?id=8279>`_ 4 <https://www.microsoft.com/en-us/download/details.aspx?id=8279>`_
* `CMake-2.8.10.2-win32-x86.exe <http://www.cmake.org/cmake/resources/software.html>`_ * `CMake-2.8.10.2-win32-x86.exe <https://cmake.org/download/>`_
The samples and the .NET SDK portions aren't required, just the The samples and the .NET SDK portions aren't required, just the
compilers and other tools. UNDONE -- check exact wording. compilers and other tools. UNDONE -- check exact wording.

View File

@ -36,7 +36,7 @@ vector data. Path objects can be passed to the methods on the
**distance** is measured as `Manhattan distance`_ and defaults to two **distance** is measured as `Manhattan distance`_ and defaults to two
pixels. pixels.
.. _Manhattan distance: http://en.wikipedia.org/wiki/Manhattan_distance .. _Manhattan distance: https://en.wikipedia.org/wiki/Manhattan_distance
.. py:method:: PIL.ImagePath.Path.getbbox() .. py:method:: PIL.ImagePath.Path.getbbox()