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?".
Will essentially "bake" the alpha channel as transparency into the tiff and remove the alpha channel. I've tried the different -alpha settings, but nothing did the trick.
Post a link to your tiff file. You can upload to say dropbox and put a link here to it.
If you do
identify -verbose source.tiff
does it show an alpha channel?
IM can only handle one or the other of background transparency and alpha channel. I do not recall which one it uses. So if you have the wrong one, you will lose the alpha channel when reading the image.
If IM sees the alpha channel, then try
convert source.tiff -alpha on -channel rgba -resize 1024x1024 dest.tif
My guess is that your tiff file has the wrong kind of transparency and IM does not see it.