Re: not sure about this question
Posted: 2008-08-19T14:56:55-07:00
Are you asking if you can expand 1 pixel from an image to make a new larger image from that pixel?
convert yourimage[1x1+xoffset+yoffset] -scale 100x100! newimage
or
conver yourimage -crop 1x1+xoffset+yoffset -scale 100x100! +repage newimage
Either will take 1 pixel at xoffset and yoffset from the top left and exand it to a new 100x100 image, all with the same color as the original image's single pixel that was selected
see http://www.imagemagick.org/script/comma ... ptions.php
and http://www.imagemagick.org/Usage/
as good reference pages
convert yourimage[1x1+xoffset+yoffset] -scale 100x100! newimage
or
conver yourimage -crop 1x1+xoffset+yoffset -scale 100x100! +repage newimage
Either will take 1 pixel at xoffset and yoffset from the top left and exand it to a new 100x100 image, all with the same color as the original image's single pixel that was selected
see http://www.imagemagick.org/script/comma ... ptions.php
and http://www.imagemagick.org/Usage/
as good reference pages