0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

画像をレトロPCっぽく加工する

Last updated at Posted at 2024-04-03

base.png

下記のURLの内容で画像を加工しました。
レトロPCゲームみたいな写真が撮りたい

  1. Imagemagickをインストール
  2. 以下の画像を"palette.png"という名前で変換予定の画像と同じディレクトリに保存。
    palette.png
    この画像は透明部分も追加されているため、透過処理が不要な場合はURL先の画像を保存するか透過部分を削除してください
  3. コマンドプロンプトを起動する
  4. 変換予定の画像のディレクトリに移動する
    cd 変換予定の画像のディレクトリ
  5. 変換する
    magick convert -resize 画像サイズ +sigmoidal-contrast 8,50% -modulate 100,200,100 -ordered-dither 4x4,8,8,8 +dither -map palette.png 変換予定の画像名 出力する画像名

例:magick convert -resize 1270x720 +sigmoidal-contrast 8,50% -modulate 100,200,100 -ordered-dither 4x4,8,8,8 +dither -map palette.png input.png output.png

同じディレクトリに出力されます。
変換予定の画像に透過部分があっても、透過して出力されます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?