ImageMagick Montage creating a spritesheet has blurry text

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
eashenden
Posts: 1
Joined: 2016-07-26T09:44:37-07:00
Authentication code: 1151

ImageMagick Montage creating a spritesheet has blurry text

Post by eashenden »

Hello, I am trying to create a spritesheet from 38 images (png) with each image in the spritesheet being 1366x768, but when I do the text becomes blurry in the image/spritesheet that is created. The commands I've been trying different variations of are...

Code: Select all

montage -border 0 -geometry 1366x -tile 6x -quality 100% spritesheet1/*.png spritesheet-animation.png
montage -mode concatenate -tile 6x -quality 100 spritesheet1/*.png spritesheet-animation.png
I have also tried to mess with the imagemagick option -density setting it at 500 and just for laughs 5 but to no avail. I wish I could show the images but they are confidential and I'm not the designer so I can't create some mock up images to represent my issue. Hopefully that will not prevent people from understanding/helping. Please let me know if there are any other questions I can answer to help clarify, thanks in advance!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: ImageMagick Montage creating a spritesheet has blurry text

Post by fmw42 »

-quality for PNG is not specified the same as for JPG. See http://www.imagemagick.org/script/comma ... hp#quality. Also I would not recommend using -geometry to resize your images.

If this does not help. the supply your result and also your IM version and platform.

Please read the topmost post in this forum at viewtopic.php?f=1&t=9620
Post Reply