Files
kondiplo_front/bin/process_logo.rb
kontei f25fd6f802
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
CI / system-test (push) Has been cancelled
フロントエンドプレイアブル
2026-02-15 14:57:17 +09:00

13 lines
330 B
Ruby

require "mini_magick"
input_path = Rails.root.join("app/assets/images/header-logo-original.png")
output_path = Rails.root.join("app/assets/images/header-logo.png")
image = MiniMagick::Image.open(input_path)
image.format "png"
image.transparent "white"
image.write output_path
puts "Created transparent logo at #{output_path}"