I am currently working on a task where I have to migrate data from Paradox Database (or simply, Paradox DB) to SQL Server Database.
The image files that the Paradox DB is using is in PCX format. And the system I am developing is required to read and display these images. Since no browser can display PCX image (you can see the image formats the browsers support in this link) using the <img>
tag, the PCX files have to be converted to another image format that popular browsers support. I have chosen the PNG format as the final image format because it can preserve the fine details with the highest resolution with smaller sizes.
I am using the free software Coffee PixConverter to do the conversion. To save time, I am utilizing its bulk conversion feature. I am also saving the converted images to the same folder as the PCX files, so I would not have the update the current physical paths of the images.