public static void main(String[] args) throws FileNotFoundException, SVGFormatException {
SVG svg = new SVG("test.svg"); //so that the file called test.svg can be called upon
PortablePixmap ppm = new PortablePixmap(500, 500); //select the size of the pixmap(canvas)
svg.drawPixmap(ppm); //draw on ppm
ppm.writeToFile("out.ppm"); //save the file as out.ppm file
This is the code I wrote, but I need to get these values from the command line input because if I hard code like this, the user cannot select what values they want to use. Can you please help me how to get these values from command line input?