GithubHelp home page GithubHelp logo

Convert to other image formats about victor HOT 3 CLOSED

dannyben avatar dannyben commented on August 20, 2024
Convert to other image formats

from victor.

Comments (3)

DannyBen avatar DannyBen commented on August 20, 2024 1

Yup. That is also an option. Keep in mind that ImageMagick for me sometimes converted even simple SVGs incorrectly.

from victor.

DannyBen avatar DannyBen commented on August 20, 2024

Victor is exclusively an SVG generator.
You can convert SVG to any other format using other tools, such as ImageMagick or my favorite - rsvg-convert.

$ rsvg-convert in.svg > out.png
# or with specific output width of 1000 pixels
$ rsvg-convert -w 1000 in.svg > out.png

from victor.

elalemanyo avatar elalemanyo commented on August 20, 2024

@DannyBen Thanks for your help. I end up using ImageProcessing::MiniMagick. I add a method to my svg service:

  def to_png
    tmp_file_name = SecureRandom.hex(4)
    tmp_svg_path = Rails.root.join("tmp", "#{tmp_file_name}.svg")
    tmp_png_path = Rails.root.join("tmp", "#{tmp_file_name}.png")
    save(tmp_svg_path.to_s)
    ImageProcessing::MiniMagick
      .source(tmp_svg_path.to_s)
      .custom { |magick| magick.alpha("remove") }
      .convert("png")
      .call(destination: tmp_png_path.to_s)
    File.read(tmp_png_path)
  ensure
    File.delete(tmp_svg_path) if tmp_svg_path && File.exist?(tmp_svg_path)
    File.delete(tmp_png_path) if tmp_png_path && File.exist?(tmp_png_path)
  end

from victor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.