분류 전체보기(746)
-
판다스 중복 제거
fonts = fonts.drop_duplicates('font_name', keep='first')
2021.01.02 -
판다스 정렬
fonts.sort_values(by=['font_name'])
2021.01.02 -
byte <-> str 변환
temp = r'abcd' str 변환 : temp.decode() temp = 'abcd' byte 변환 : temp.endcode()
2021.01.02 -
윈도우에서 폰트를 찾지 못하는 에러
text2image --text ./data/train.txt --outputbase ./data/font_image/kor.12lottemartdreambold.exp0 --font '12LotteMartDreamBold' --fonts_dir C:\ppData\Local\Microsoft\Windows\Fonts --fontconfig_tmpdir ./data/tmp Could not find font named '12LotteMartDreamBold'. Please correct --font arg. fonts_dir값의 '\'문자를 '/'로 변환 필요 font_dir = font_dir.replace('\', '/') fonts_dir은 윈도우와 사용자계정의 디렉토리 중 해당하는 디렉토리 정보를 ..
2021.01.02 -
OSError: [WinError 17] 시스템은 파일을 다른 디스크 드라이브로 옮길 수 없습니다: '
os.rename(src,dest)으로는 다른 드라이브로 이동 불가능 import shutil shutil.move(src,dest)
2021.01.02 -
파일크기 확인
os.path.getsize(file)
2021.01.01