← coderrocketfuel.com

Convert a SVG File to JPEG Format Using Node.js & Sharp

Do you need to convert a SVG file to a JPEG format? This article will walk you through how to do that.

We will use Node.js as our coding language of choice and the Sharp NPM package to do most of the heavy lifting for us.

Table Of Contents

Install Sharp NPM Package

First, you need to install the npm package. You can install it with either the npm or yarn command below:

NPM:

npm install jimp --save

Yarn:

yarn add jimp

If everything went as planned, you should now have the Sharp NPM package installed.

Convert SVG to JPEG

Now we're ready to start writing some code and converting an image! Make sure you have a SVG file in the root of your project directory that we can play around with.

Using the Sharp NPM package, here is the full code:

const sharp = require("sharp")

sharp("file.svg")
  .png()
  .toFile("new-file.jpg")
  .then(function(info) {
    console.log(info)
  })
  .catch(function(err) {
    console.log(err)
  })

Let's break down each part of the code:

  1. First, we import the sharp NPM package and hold it in the sharp variable.
  2. Then, we use the sharp package to read our file.svg file, convert it to a PNG and write the file as JPEG file type to your directory with the .toFile() function.
  3. The sharp method is a promise and we use it to get the info for the file once it has been written to our directory.
  4. Last, we use .catch() method to catch and console.log() any errors.

When you run the code, you should get a similar output to this:

{
  format: 'png',
  width: 2500,
  height: 527,
  channels: 4,
  premultiplied: false,
  size: 47194
}

And you should see the new JPEG file in your project directory.

There are also additional options you can pass to the .png() method to alter the output image. These include the compression level, quality, colors, and more. You can check them out in their documentation.