Core API Reference
This section provides documentation for the core logic modules.
main
Entry point for the Image Converter CLI application.
Handles command-line arguments and either launches the interactive menu or executes CLI-specified image processing operations.
StoreInOrder
Bases: Action
Custom argparse Action to store arguments in the order they are provided.
Source code in src/image_converter/main.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | |
__call__(parser, namespace, values, option_string=None)
Store the argument destination and values in the 'ordered_operations' list.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parser
|
ArgumentParser
|
The ArgumentParser object. |
required |
namespace
|
Namespace
|
The Namespace object that will hold the parsed attributes. |
required |
values
|
str | list
|
The parsed argument values. |
required |
option_string
|
str
|
The option string that was used to invoke this action. Defaults to None. |
None
|
Source code in src/image_converter/main.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | |
main()
Run the main entry point for the image conversion CLI application.
Parse command-line arguments and execute the specified image processing
pipeline. If no arguments are provided or the --menu flag is used, it
launches the interactive menu interface. By default, the program searches
for images in the Base Images/ directory if no specific file path is given.
Source code in src/image_converter/main.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | |
processing
Core image processing pipeline and handlers.
Applies chained operations in sequence to a list of images and handles the saving of the processed outputs, managing UI progress reporting.
StyledTimeElapsedColumn
Bases: TimeElapsedColumn
A TimeElapsedColumn that supports custom styling.
Attributes:
| Name | Type | Description |
|---|---|---|
style |
str
|
The Rich style string to apply to the time elapsed text. |
Source code in src/image_converter/processing.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
__init__(style='none')
Initialize the StyledTimeElapsedColumn.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
style
|
str
|
The Rich style string to apply. Defaults to "none". |
'none'
|
Source code in src/image_converter/processing.py
68 69 70 71 72 73 74 75 76 | |
render(task)
Render the time elapsed for a given task with the configured style.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task
|
Task
|
The progress task. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
Text |
Text
|
A Rich Text object representing the styled time elapsed. |
Source code in src/image_converter/processing.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
handle_blur(image, image_name, values, args)
Handle the 'blur' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (blur radius). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The blurred image. |
Source code in src/image_converter/processing.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | |
handle_border(image, image_name, values, args)
Handle the 'border' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
A list containing [thickness, color, position]. Expects thickness to be int (or convertible string), color (str), position (str). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with the border added, or the original image if arguments are invalid. |
Source code in src/image_converter/processing.py
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 | |
handle_brightness(image, image_name, values, args)
Handle the 'brightness' adjustment operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (brightness level). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with adjusted brightness. |
Source code in src/image_converter/processing.py
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | |
handle_color_balance(image, image_name, values, args)
Handle the 'color_balance' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (R, G, B factors). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The color-balanced image. |
Source code in src/image_converter/processing.py
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | |
handle_contrast(image, image_name, values, args)
Handle the 'contrast' adjustment operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (contrast level). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with adjusted contrast. |
Source code in src/image_converter/processing.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | |
handle_edge_detection(image, image_name, values, args)
Handle the 'edge_detection' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (method). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with edge detection applied. |
Source code in src/image_converter/processing.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 | |
handle_flip(image, image_name, values, args)
Handle the 'flip' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (direction). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The flipped image. |
Source code in src/image_converter/processing.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | |
handle_grayscale(image, image_name, values, args)
Handle the 'grayscale' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation. |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The grayscale image. |
Source code in src/image_converter/processing.py
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |
handle_hue_rotation(image, image_name, values, args)
Handle the 'hue_rotation' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (degrees). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with rotated hue. |
Source code in src/image_converter/processing.py
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | |
handle_invert(image, image_name, values, args)
Handle the 'invert' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation. |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with inverted colors. |
Source code in src/image_converter/processing.py
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
handle_posterize(image, image_name, values, args)
Handle the 'posterize' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (bits). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The posterized image. |
Source code in src/image_converter/processing.py
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
handle_remove_background(image, image_name, values, args)
Handle the 'remove_background' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation. |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with the background removed. |
Source code in src/image_converter/processing.py
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |
handle_rotate(image, image_name, values, args)
Handle the 'rotate' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
A list containing [angle]. Expects angle to be int. |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The rotated image. |
Source code in src/image_converter/processing.py
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 | |
handle_saturation(image, image_name, values, args)
Handle the 'saturation' adjustment operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (saturation level). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with adjusted saturation. |
Source code in src/image_converter/processing.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | |
handle_scale(image, image_name, values, args)
Handle the 'scale' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (scale factor or dimensions). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The scaled image, or the original image if scaling fails. |
Source code in src/image_converter/processing.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | |
handle_sharpen(image, image_name, values, args)
Handle the 'sharpen' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
The arguments for the operation (sharpness intensity). |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The sharpened image. |
Source code in src/image_converter/processing.py
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | |
handle_vignette(image, image_name, values, args)
Handle the 'vignette' operation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
image
|
Image
|
The input image. |
required |
image_name
|
str
|
The name of the image file. |
required |
values
|
list
|
A list containing [intensity]. Expects intensity to be int. |
required |
args
|
Namespace
|
The parsed CLI arguments. |
required |
Returns:
| Type | Description |
|---|---|
Image
|
Image.Image: The image with the vignette effect applied. |
Source code in src/image_converter/processing.py
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 | |
process_images_and_save(images_data, ordered_operations, cli_args)
Process a list of images by applying a sequence of operations and saves the results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
images_data
|
list
|
A list of tuples, where each tuple contains (filename, filepath). |
required |
ordered_operations
|
list
|
A list of dictionaries detailing the operations to apply. Each dict should have 'dest' (operation name) and 'values' (operation arguments). |
required |
cli_args
|
Namespace
|
The parsed command-line arguments. |
required |
Source code in src/image_converter/processing.py
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 | |
file_management
Utilities for managing files and directories.
Provides functions to manage images, such as moving images from the current directory to a designated subdirectory.
move_images_to_subdirectory(subdirectory_name)
Move all image files from the current directory to a specified subdirectory.
Typically used to move images into the 'Base Images' directory, which is the default search path for image processing operations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
subdirectory_name
|
str
|
The name of the subdirectory to create and move the images into. |
required |
Raises:
| Type | Description |
|---|---|
Exception
|
If an error occurs during directory creation or file moving. |
Source code in src/image_converter/file_management.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | |