1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/common/convert.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Seth Falco <seth@falco.fun>
Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
2021-05-20 16:13:41 -04:00

1,004 B

convert

ImageMagick 이미지 변환 도구. 더 많은 정보: https://imagemagick.org/script/convert.php.

  • JPG이미지를 PNG이미지로 변환:

convert {{이미지.jpg}} {{이미지.png}}

  • 이미지를 원래 크기의 50%로 조정:

convert {{이미지.png}} -resize 50% {{이미지2.png}}

  • 원래 종횡비를 유지하면서 이미지를 최대 640x480 크기로 조정:

convert {{이미지.png}} -resize 640x480 {{이미지2.png}}

  • 이미지를 가로로 추가:

convert {{이미지1.png}} {{이미지2.png}} {{이미지3.png}} +append {{이미지123.png}}

  • 이미지를 세로로 추가:

convert {{이미지1.png}} {{이미지2.png}} {{이미지3.png}} -append {{이미지123.png}}

  • 100ms 지연된 일련의 이미지에서 GIF 만들기:

convert {{이미지1.png}} {{이미지2.png}} {{이미지3.png}} -delay {{100}} {{애니메이션.gif}}

  • 단색 배경만으로 이미지 만들기:

convert -size {{800x600}} "xc:{{#ff0000}}" {{이미지.png}}