├── .editorconfig
├── .gitignore
├── BigBoss_description.html
├── LICENSE.md
├── Makefile
├── PortraitPhotos.plist
├── PortraitPhotos.xm
├── README.md
├── control
└── screenshots
├── camera_lighting_effects.png
├── camera_lighting_effects_intensity.png
├── photos_lighting_effects.png
└── photos_lighting_effects_intensity.png
/.editorconfig:
--------------------------------------------------------------------------------
1 | # This file is for unifying the coding style for different editors and IDEs
2 | # editorconfig.org
3 |
4 | root = true
5 |
6 | [*]
7 | charset = utf-8
8 | end_of_line = lf
9 | insert_final_newline = true
10 | trim_trailing_whitespace = true
11 | indent_style = tab
12 |
13 | [*.md]
14 | trim_trailing_whitespace = false
15 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | ## OS X
2 | .DS_Store
3 | .AppleDouble
4 | .LSOverride
5 | Icon
6 | ._*
7 | .Spotlight-V100
8 | .Trashes
9 |
10 | ## Windows
11 | Thumbs.db
12 | ehthumbs.db
13 | Desktop.ini
14 | $RECYCLE.BIN/
15 |
16 | ## THEOS
17 | .theos
18 | /packages
19 |
20 | ## PROJECT RESOURCES
21 | _FILES
22 |
--------------------------------------------------------------------------------
/BigBoss_description.html:
--------------------------------------------------------------------------------
1 |
2 |
Portrait Photos - Enable all Portrait Lighting effects in Camera app and Photos app (while editing Portrait photos).
3 |
4 |
Requires device with Dual Camera or iPhone Xr on iOS 12.4 and above
5 |
6 |
In Camera app this tweak enables Lighting effects:
7 | - Natural Light: The face is in sharp focus against a blurred background.
8 | - Studio Light: The face is brightly lit, and the photo has an overall clean look.
9 | - Contour Light: The face has dramatic shadows with highlights and lowlights.
10 | - Stage Light: The face is spotlit against a deep black background.
11 | - Stage Light Mono: The effect is like Stage Light, but the photo is in classic black and white.
12 | - High-Key Light Mono: Creates a grayscale subject on a white background (iOS 13+ only)
13 | - Lighting effects intensity control (iOS 13+ only) - turn it on using button in top right corner
14 | - Depth Control - turn it on using button in top right corner
15 |
16 |
on iPhone Xr support in Photos app is currently limited (some options don't work correctly)
17 |
18 |
In Photos app this tweak enables Lighting effects (while editing Portrait photos):
19 | - Natural Light: The face is in sharp focus against a blurred background.
20 | - Studio Light: The face is brightly lit, and the photo has an overall clean look.
21 | - Contour Light: The face has dramatic shadows with highlights and lowlights.
22 | - Stage Light: The face is spotlit against a deep black background.
23 | - Stage Light Mono: The effect is like Stage Light, but the photo is in classic black and white.
24 | - High-Key Light Mono: Creates a grayscale subject on a white background (iOS 13+ only)
25 | - Lighting effects intensity control (iOS 13+ only) - turn it on using button in top left corner
26 |
27 | No options to configure.
28 |
29 | This tweak is open sourced
on Github
30 |
31 |
Camera app / Photos App Screenshots below
32 |
33 |
34 |

35 |
36 |
37 |

38 |
39 |
40 |

41 |
42 |
43 |

44 |
45 |
46 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ### GNU GENERAL PUBLIC LICENSE
2 |
3 | Version 3, 29 June 2007
4 |
5 | Copyright (C) 2007 Free Software Foundation, Inc.
6 |