Jump to content

White Images with Transparent Background in Gallery


JoyceKeller

Recommended Posts

Joyce,

The only work around would be a rule in FusionPro to allow you to show one image in the Gallery (with a colored background to show the white graphic), then return a different image in the PDF (the graphic without the background).

 

Try something like this:

if (GetFileName(Field("Image1")) == "WhiteWithBackground.jpg")

{

return Resource("ActualImage.jpg");

}

 

else

{

return Field("Image1");

}

 

Hopefully that will work.

 

PS - I think this is a good enhancement suggestion I will submit, so you don't have to use a rule.

Link to comment
Share on other sites

×
×
  • Create New...