C
Chris Ramsay
I have experienced similar problems recently - not sure exactly what software you are all using, but the clue is PNG graphics being poor when transparency is enabled.
The underlying issue is that low level routines within GDI (Graphics Display Interface) of Windows discard the alpha channel of graphics files. The alpha channel is what provides the transparency information for PNG and GIF files. Without the alpha channel being handled properly, the edges of the image go all chunky.
JPEGs do not have an alpha channel so are not a problem.
It all depends on the software you are using - I have found most freeware PDF converters all have the same problem. Not sure about the inbuilt converters of Office 2007.
To verify this is the problem your are having, take your PNG source image, convert it to a GIF with no transparency and no dithering, put it back in your Word document and try again - you will probably find your PDF conversion is now fine (it was for me).
If you Google something like "GDI alpha channel", you will find endless other chatter about this issue with Windows.
Software that uses it's own internal graphics routines (not the Windows routines) for image conversion should be fine ...
Or use a Mac !
The underlying issue is that low level routines within GDI (Graphics Display Interface) of Windows discard the alpha channel of graphics files. The alpha channel is what provides the transparency information for PNG and GIF files. Without the alpha channel being handled properly, the edges of the image go all chunky.
JPEGs do not have an alpha channel so are not a problem.
It all depends on the software you are using - I have found most freeware PDF converters all have the same problem. Not sure about the inbuilt converters of Office 2007.
To verify this is the problem your are having, take your PNG source image, convert it to a GIF with no transparency and no dithering, put it back in your Word document and try again - you will probably find your PDF conversion is now fine (it was for me).
If you Google something like "GDI alpha channel", you will find endless other chatter about this issue with Windows.
Software that uses it's own internal graphics routines (not the Windows routines) for image conversion should be fine ...
Or use a Mac !