I'd like to produce two images - one which contains only the line on the axes/labels and one which contains everything else.
I've done this :
Code: Select all
convert f1.tiff -fill white -opaque black f2.tiffI now want to use that image to produce an image that contains only the axes/labels.
I've tried this :
Code: Select all
convert f1.tiff f2.tiff -compose minus f3.tiff And I've tried this :
Code: Select all
convert f2.tiff f1.tiff -compose minus f3.tiff Sure I'm doing something simple wrong - anyone able to tell me what ?