07-01-2023, 12:30 PM
Thank you, Mr. rich2005 for replying to my email. You remain my emancipator.
Either,
Or
(07-01-2023, 08:25 AM)rich2005 Wrote:Yes, my bad. I lost my rational senses. True. How can a raster system create a .svg file format? So how could I post that request. I apologise.Quote:Moreover, advice is also requested on
(1) Whether such files could be saved with .svg extension?
Remember Gimp is a bitmap (raster) editor. You cannot export an image in vector (SVG) format.
When Gimp opens a PDF, any vector 'objects' including text are rasterised. The image is now composed of pixels. ...
(07-01-2023, 08:25 AM)rich2005 Wrote: ... Get a smaller file size using grayscale rendering. Just a slight addition to the IM command.As usual you whetted my appetite. You made me find that imagemagick or popplar-utils could be used to join those 50 downgraded images into a pdf file, each image occupying one page.
Code:
convert -density 50 imagename.pdf -colorspace Gray imagename-gray.jpg
No difference with what you see when the jpeg is opened in an image viewer. These are low quality images (50 ppi), do not expect anything wonderful but depending on the original text size, should be legible. ...
Either,
Code:
convert image*.jpg output.pdf
Code:
img2pdf *.jpg -o output.pdf