convert(2)
-
[ Java ] 자바 - 저장된 이미지 파일 변환 후 사이즈 조정
변환할 확장자나 사이즈는 알맞게 수정하시면 됩니다. File file = new File(_파일경로_, _파일명_); File flTgt = new File(_생성경로_, _생성파일명_+".jpg"); boolean isConvert = ImageUtils.convertFmt(file, flTgt); if(isConvert) { ImageUtils.resizeImage(flTgt.getPath(), 1920, 1080); } ImageUtils.java public class ImageUtils { public static boolean convertFmt(File flSrc, File flTgt) throws Exception { boolean result = false; boolean isConver..
2020.11.26 -
[ Javascript ] 자바스크립트 상에서 Byte를 보기 쉽게 자동 변환하기
우선 소스 원문입니다. 출처 : https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript Correct way to convert size in bytes to KB, MB, GB in JavaScript I got this code to covert size in bytes via PHP. Now I want to convert those sizes to human readable sizes using JavaScript. I tried to convert this code to JavaScript, which looks like this: fun... stackove..
2020.07.07