-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug: There's a bug where the output screen turns 90 degrees, Screen has different left and right spacing #20
Merged
Juhwa-Lee1023
merged 12 commits into
main
from
19-bug-theres-a-bug-where-the-output-screen-turns-90-degrees-screen-has-different-left-and-right-spacing
Sep 15, 2022
Conversation
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
3 tasks
고생하셨습니다 코인! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
스도쿠!!! 너무 좋아요!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@LeeSungNo-ian
@jeong-hyeonHwang
@commitcomplete
Outline
Work Contents
Trouble Point
1. Image is rotated when retrieving pictures from album.(앨범에서 사진을 불러올 때 이미지가 회전 되어있음.)
UIImagePickerController
, the image rotates and enters.(UIImagePickerController
를 통해 카메라로 사진을 찍어 불러오면 이미지가 회전되어 들어옴.)UIImage
, add a function that rotates normally(UIImage
에 이미지가 회전되어 있으면, 정상적으로 회전시켜주는 funtion 추가)2. The image rotates when the image is processed in real time through the camera.(카메라를 통해 실시간으로 이미지 가공할 때 이미지가 회전됨.)
AVCapture Video Orientation.portrait
without following the state of the device.(이미지의 방향을 디바이스의 상태를 따라가지않고,AVCaptureVideoOrientation.portrait
를 통해 고정시킴..)3. The left and right margins of the main camera view are different.(메인 카메라 뷰의 좌우 여백이 다름.)
�Trouble Situation
cameraview
.(cameraview
의 frame을 카메라뷰가 따라가지않음.)Trouble Shooting
cameraview
의frame
이 아니라bounds
를 따라가도록 변경(Change to follow thebounds
, not theframe
of 'cameraview'.)