JoyceKeller Posted October 3, 2011 Share Posted October 3, 2011 I'm sure it has something to do with the rule I have associated with the graphic. The FusionPro composes correctly, but when uploaded to MCC and previewed, one graphic that should upload a min size of 3.66 x 2.09 at 100 dpi and the other graphic that should upload a min size of 4.74 x 3.16 at 100dpi BOTH display in preview as requiring a min size of 1 x 1 at 100 dpi. Has anyone else expereinced this "default" 1" x 1" issue? The rule is posted below. Basically, if a user does not upload a photo, a graphic will fill the space. switch (Field("FamilyFunPhoto")) { case "": return Resource("FamilyCartoon.jpg"); case Field("FamilyFunPhoto"): return Resource(Field("FamilyFunPhoto")); default: return Resource("FamilyCartoon.jpg"); } Link to comment Share on other sites More sharing options...
JoyceKeller Posted October 3, 2011 Author Share Posted October 3, 2011 Well, I thought perhaps the switch rule might not be agreeable, so I used CreateResource instead, but I still got the 1 x 1 minimum size for the uploads. var kidsPic = CreateResource(Field("KidsPhoto")); if (kidsPic.exists) { return kidsPic; } else { return Resource("KidsCartoon.png"); } Link to comment Share on other sites More sharing options...
FreightTrain Posted October 4, 2011 Share Posted October 4, 2011 Joyce, What is the size of your frame? What settings did you use for scaling in FPD? What is the size and res is the image you are uploading? What is the image format you are uploading? Are you using Image Cropper? Answer these to see if we can help... Link to comment Share on other sites More sharing options...
apearsongsghome.com Posted February 6, 2012 Share Posted February 6, 2012 I'm having the same problem with my image cropper. I also have rules set in my FP Frames . I guess no one answered this thread? Link to comment Share on other sites More sharing options...
Jaap Posted September 19, 2012 Share Posted September 19, 2012 Does anybody have an answer to this topic? Link to comment Share on other sites More sharing options...
JoyceKeller Posted September 19, 2012 Author Share Posted September 19, 2012 Basically the issue occurred because the fields were referenced in a rule and weren’t directly associated to the frame. Since the number of copyholes and the dimensions can vary depending on how many images you want to display, when you upload image it defaults to 1" x 1". Essentially the system is saying it doesn't know how big the copyhole is so it just uses 1" x 1" as a default value since it has to display something. I ended up using conditional visibility when setting up the form in the MC Manager, instead of using rules in FusionPro. That took care of it. I hope this is helpful to you. Link to comment Share on other sites More sharing options...
JoyceKeller Posted September 19, 2012 Author Share Posted September 19, 2012 I need to give credit where it is due.... Jeff Stehman helped me with this. It was Jeff that said, "Basically the issue occurred because the fields were referenced in a rule and weren’t directly associated to the frame. Since the number of copyholes and the dimensions can vary depending on how many images you want to display, when you upload image it defaults to 1" x 1". Essentially the system is saying it doesn't know how big the copyhole is so it just uses 1" x 1" as a default value since it has to display something." So, thanks Jeff, as always Link to comment Share on other sites More sharing options...
Jaap Posted September 19, 2012 Share Posted September 19, 2012 Thanks for the info. I'm using the same image on different pages of a document, in one frame size. What exactly should I do. To be able to upload one image with the right 'settings'. Link to comment Share on other sites More sharing options...
JoyceKeller Posted September 19, 2012 Author Share Posted September 19, 2012 I would do this: In FusionPro, assign the same graphic field to each graphic frame being used in the document. Then there is only one graphic field in the form to upload to, and all graphic frames assigned with that graphic field will be populated with the single uploaded image. Does this help? Link to comment Share on other sites More sharing options...
Jaap Posted September 19, 2012 Share Posted September 19, 2012 Guess this has solved the problem. Link to comment Share on other sites More sharing options...
Jaap Posted September 21, 2012 Share Posted September 21, 2012 This has partly solved the problem. I need to achieve the following in Marcom: A customer uploads a (whatever size) company logo. The only check that needs to be done is a 300 dpi check. So cropping the image (a logo) is NOT the solution. Any other suggestions to check a file? Link to comment Share on other sites More sharing options...
Recommended Posts