From 48df386b7e7ee87cd53a6087b2d26abe23a350e7 Mon Sep 17 00:00:00 2001 From: AMRowsell Date: Mon, 29 Mar 2021 16:44:15 +0000 Subject: [PATCH] Fixed line breaks in README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cfa063a..6886f5d 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ ## What is MSPConvert? -MSPConvert is a really simple python script to convert old formats of Microsoft Paint to a format that GIMP can handle natively (XBM). -Because both version 1 and version 2 MSP files are black and white only, each pixel is represented directly by a bit. Converting version 1 is very simple: just copy the data over. -Version 2 implemented some simple run-length encoding, so a few extra steps are needed. +MSPConvert is a really simple python script to convert old formats of Microsoft Paint to a format that GIMP can handle natively (XBM). +Because both version 1 and version 2 MSP files are black and white only, each pixel is represented directly by a bit. Converting version 1 is very simple: just copy the data over. +Version 2 implemented some simple run-length encoding, so a few extra steps are needed. ## Usage -To convert a file called EXAMPLE.MSP to EXAMPLE_converted.xbm, just run: -`./mspconvert.py EXAMPLE` +To convert a file called EXAMPLE.MSP to EXAMPLE_converted.xbm, just run: +`./mspconvert.py EXAMPLE` It should detect the version automatically, and then write the output file. Then fire up GIMP, open the xbm file, and you can then export it as any other modern format (PNG, JPG, BMP etc.)