Changing the leading space in image

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?".
user20157
Posts: 19
Joined: 2016-01-11T18:17:14-07:00
Authentication code: 1151

Re: Changing the leading space in image

Post by user20157 »

Is there any formula that list of all the image's pixel color values with their corresponding coordinates ?. The formula you show me is just for one column only.
PandoraBox
Posts: 23
Joined: 2011-04-10T14:08:11-07:00
Authentication code: 8675308

Re: Changing the leading space in image

Post by PandoraBox »

Is there any formula that list of all the image's pixel color values with their corresponding coordinates ?. The formula you show me is just for one column only.
Simple,
convert image.ext image.txt

PandoraBox
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Changing the leading space in image

Post by fmw42 »

Code: Select all

convert image.suffix txt:
will list every pixel to the terminal or you can write to a text file as above
Post Reply