-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64140f6
commit f496c96
Showing
76 changed files
with
19,153 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: c04d496af9e683ca3dbd4c94361ef2c7 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Parameters | ||
========== | ||
|
||
List of **pyimgbatch** project file parameters. The content of the square brackets shows the command line equivalent. | ||
|
||
:width [-\\-width]: **Width** of the destination image. If the **width** is not given, it calculateted on the height. | ||
If neither the width nor the height are given, the width and the height of the source image will be used. | ||
|
||
:height [-\\-height]: **Height** of the destination image. If the **height** is not given, it calculateted on the height. | ||
If neither the width nor the height are given, the width and the height of the source image will be used. | ||
|
||
:resample [-\\-resample]: defines the resample mode on resizing the image. Possible values are | ||
"none", "bilinear", "bicubic", "hamming", "box" or "antialias". | ||
If there is no resample mode is given or the given resample mode is unknown, it defaults to "antialias" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PyImgBatch | ||
========== | ||
|
||
.. automodule:: pyimgbatch | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,199 @@ | ||
Quickstart | ||
========== | ||
|
||
PyImgBatch is a batch image processor for python including a command | ||
line interface. | ||
|
||
Installation | ||
------------ | ||
|
||
For installation open a terminal and type the following line into the | ||
command line. | ||
|
||
:: | ||
|
||
pip install pyimgbatch | ||
|
||
Usage on command line | ||
--------------------- | ||
|
||
The simplest usage is to change to the folder containing the images with | ||
|
||
:: | ||
|
||
cd /folder/wit/images | ||
|
||
and type | ||
|
||
:: | ||
|
||
pyimgbatch --width 300 | ||
|
||
This will resize all supported image files in the current folder to a | ||
width of 300 pixels respecting the aspect ratio of the source file. The | ||
results will be written to a "dest" subfolder. | ||
|
||
Alternatively, you can set a source folder with the images to be | ||
converted and/or a destination folder for the results as follow. | ||
|
||
:: | ||
|
||
pyimgbatch --source source_folder --dest destination_folder --height 400 | ||
|
||
or shorter | ||
|
||
:: | ||
|
||
pyimgbatch -s source_folder -d destination_folder --height 400 | ||
|
||
This will convert the images from the *source\_folder* to a height of | ||
400px and stores the results in the destination folder. | ||
|
||
*Note: For every source image a subfolder will be created inside the | ||
destination\_folder. To avoid this behavior use the --nosubfolder | ||
argument.* | ||
|
||
Project Files | ||
------------- | ||
|
||
One of PyImgBatch features is to create multiple different versions from | ||
given image files. | ||
|
||
For this, you can use project files. Project files are JSON files | ||
containing the specifications for the image processing. | ||
|
||
The very short one | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
Here an example of a very short one. | ||
|
||
.. code:: json | ||
[ | ||
{ "width": 1000, "suffix": ".w1000" }, | ||
{ "height": 1200, "suffix": ".h1200" } | ||
] | ||
For example (may the project named "myprj.json"): | ||
|
||
:: | ||
|
||
pyimgbatch -c myprj.json | ||
|
||
produces the following output: | ||
|
||
:: | ||
|
||
processing: french-bulldog-4530685.jpg | ||
creating: french-bulldog-4530685.w1000.jpg | ||
creating: french-bulldog-4530685.h1200.jpg | ||
processing: coast-4478424.jpg | ||
creating: coast-4478424.w1000.jpg | ||
creating: coast-4478424.h1200.jpg | ||
... | ||
processing: beaded-2137080_1920-cmyk-iso-eci.tif | ||
creating: beaded-2137080_1920-cmyk-iso-eci.w1000.jpg | ||
creating: beaded-2137080_1920-cmyk-iso-eci.h1200.jpg | ||
... | ||
|
||
and creates two images per source images, resized to the specified width | ||
or height with suffix added to the original name. | ||
|
||
The short one | ||
~~~~~~~~~~~~~ | ||
|
||
Imagine, you need to create different sizes for all your images for | ||
your web project. For instance, you need the images in widths 180px, | ||
300px, 400px and one in a height of 800 and each 2x and 3x the size for | ||
higher pixel density display like in smartphones. | ||
|
||
An example could look as follow. | ||
|
||
.. code:: JSON | ||
{ | ||
"name": "web set", | ||
"comment": "some sample pictures", | ||
"source": "webset/source", | ||
"dest": "webset/dest", | ||
"prefix": "web.", | ||
"configs": [ | ||
{ "width": 180, "suffix": ".w180", "webset": "@3x" }, | ||
{ "width": 300, "suffix": ".w300", "webset": "@3x" }, | ||
{ "width": 400, "suffix": ".w400", "webset": "@3x" }, | ||
{ "height": 800, "prefix": "preview.", "webset": "@3x" } | ||
] | ||
} | ||
This will create 12 destination images for each imput image. For a image | ||
"lama-4540160.jpg" you get: | ||
|
||
:: | ||
|
||
... | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
creating: lama-4540160/[email protected] | ||
... | ||
|
||
As you see you can specify defaults, so you don't need to repeat | ||
yourself. | ||
|
||
The more specific option is used instead of the more general one. So | ||
in this example, all images get the prefix "web." except the last, | ||
because the more specific prefix is here given as "preview." | ||
|
||
*Hint: The file names are a little strange because I've downloaded the | ||
from the free image stock `pixabay <https://pixabay.com>`__ and I | ||
haven't changed the Name so you can search for the pics or the | ||
photographer if you want.* | ||
|
||
Full image project file | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
looks as follow. | ||
|
||
.. code:: JSON | ||
{ | ||
"comment": "pyImgBatch demo project", | ||
"debug": true, | ||
"no-progess": false, | ||
"projects": [ | ||
{ | ||
"name": "web set", | ||
"comment": "some sample pictures", | ||
"source": "webset/source", | ||
"dest": "webset/dest", | ||
"prefix": "web.", | ||
"configs": [ | ||
{ "width": 180, "suffix": ".w180", "webset": "@3x" }, | ||
{ "width": 300, "suffix": ".w300", "webset": "@3x" }, | ||
{ "width": 400, "suffix": ".w400", "webset": "@3x" }, | ||
{ "height": 800, "prefix": "preview.", "webset": "@3x" } | ||
] | ||
}, | ||
{ | ||
"name": "images to thumbnails", | ||
"source": "to-thumbnails/originals", | ||
"dest": "to-thumbnails/thumbnails", | ||
"subfolder": false, | ||
"prefix": "thumb.", | ||
"configs": [ | ||
{"height": 300}, | ||
{"prefix": "smallthumb.", "height": 200} | ||
] | ||
} | ||
] | ||
} | ||
This project contains two projects. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Tutorials | ||
========= | ||
|
Oops, something went wrong.