pillow.readthedocs.io/en/stable/installation.html#basic-installation

 

Installation — Pillow (PIL Fork) 8.0.1 documentation

Build flags: --disable-zlib, --disable-jpeg, --disable-tiff, --disable-freetype, --disable-lcms, --disable-webp, --disable-webpmux, --disable-jpeg2000, --disable-imagequant, --disable-xcb. Disable building the corresponding feature even if the development

pillow.readthedocs.io

 

exif 정보를 불러올 수 있는 모양

 

  exif 정보는 아래와 같은 정보를 담고 있음

www.awaresystems.be/imaging/tiff/tifftags/privateifd/exif.html

 

EXIF Tags

TIFF Tag Reference, Exif Tags Exif tags are used largely to encode additional information related to image generation by digital still cameras. Exif is the abbreviation of 'Exchangeable image file format', though this can be argued to be a misnomer, as Exi

www.awaresystems.be

 

 

PIL 을 이용해서 jpg 파일의 정보를 출력하는 간단한 프로그램

 

from PIL import Image
im = Image.open('5D3_9369.JPG')
takentime = im.getexif()[36867]
print (im.format, im.size, im.mode, takentime)

 

결과 

 

JPEG (5760, 3840) RGB 2020:10:18 12:50:39

'Python' 카테고리의 다른 글

Macbook Catalina Python 개발 환경 잡기  (0) 2020.11.28
Python 연습 프로젝트 1  (0) 2020.11.28
Tkinter 를 이용한 시계  (0) 2017.06.27
Mac에서 Python 개발 환경 구축하기  (0) 2016.02.18
import  (0) 2016.02.08

 - Visual Studio Code

code.visualstudio.com

 

Visual Studio Code - Code Editing. Redefined

Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications.  Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.

code.visualstudio.com

- brew

brew.sh

 

 - Python3.8.2

medium.com/front-end-weekly/how-to-install-the-latest-python-3-on-mac-with-no-issues-5db0045e1429

 

 - pip 

www.geeksforgeeks.org/how-to-install-pip-in-macos/#:~:text=pip%20can%20be%20downloaded%20and%20installed%20using%20command-line,3%20Voila%21%20pip%20is%20now%20installed%20on%20

 

- Visual Studio Code 에서 python extension 들 설치

- Visual Studio Code 에서 python interpreter 설정

 : ⌘+⇧+p 

 : Python: Select Interpreter

 

사용할 python version 선택

 

 - 번외 : Mac Terminal 용 Dracula theme 설치

'Python' 카테고리의 다른 글

Python JPEG 사진 정보 불러오기 : pillow  (0) 2020.11.28
Python 연습 프로젝트 1  (0) 2020.11.28
Tkinter 를 이용한 시계  (0) 2017.06.27
Mac에서 Python 개발 환경 구축하기  (0) 2016.02.18
import  (0) 2016.02.08

원하는 기능

특정 폴더에 있는 사진파일을 읽어 년도 아래 월 폴더를 만들어 이동시키기

 

 

연습 목록

1. Python 으로 사진파일 정보 중 촬영날짜 읽어오기

loekohcoder.tistory.com/27

2. Python 으로 디렉터리 확인 및 생성

 

3. Python 으로 파일 이동

'Python' 카테고리의 다른 글

Python JPEG 사진 정보 불러오기 : pillow  (0) 2020.11.28
Macbook Catalina Python 개발 환경 잡기  (0) 2020.11.28
Tkinter 를 이용한 시계  (0) 2017.06.27
Mac에서 Python 개발 환경 구축하기  (0) 2016.02.18
import  (0) 2016.02.08

+ Recent posts