Inserting Images - Image look blurry

I have a problem with FormsCentral that I'm hoping someone can help me with.
One of my employers sent me a .jpg logo that I want to use in a form.  It looks good when I upload it, but it's too big.  When I resize the logo in Photoshop, it still looks good.  But when I upload it to FormsCentral, then the logo becomes blurry.  Yet it looks fine in Photoshop.
Does anybody have any idea what I'm doing wrong? I appreciate your help.
Thanks,
PJL

Hello Gen,
did you receive the mail I send on this topic? I've never heared back from the Feedback-Team.
We're about to release some questionaires to customers and would linke to use non compressed images - How is the investigation coming along?
Here's the testimage I sent.
And the result in formscentral.
A workaround like linking images doesn't work eighter, because formcentral embedds all images.
Thanks a lot.

Similar Messages

  • My images look blurry when I export or publish my site from Muse. Why and how do I fix it?

    My images look blurry, jagged, pixelated and low quality when I publish or export my site from Muse. Is there any way to avoid or fix this problem?

    The primary cause of blurring images is the less than Photoshop-quality image downsampling algorithm currently used in Muse (that was compounded in early betas due to a bug in the JPEG compression library we were using at that time). Due to work we've done for Beta 7 to improve image encoding performance we now have the infrastructure in place to enable us to take a much better image resampler/resizer (after Beta 7), so this source of blurring will be addressed.
    The other source of blurring is unique to opaque images containing line art or otherwise containing hard edges and large areas of solid color. When an image is opaque Muse will encode it as JPEG (if it's altered in Muse is a way that requires re-encoding). For line art this will introduce JPEG compression artifacts that can be noticeable depending on your eye and the specific image involved.
    There are (at least) to ways to avoid these JPEG compression artifacts:
    Resize your image before placing and avoid applying any effects (rounded corners, drop shadow, etc.) or doing any cropping or resizing in Muse. If the image is unaltered your original JPEG, PNG or GIF will be passed through unaltered.*
    Put at least one pixel of transparency in your original image. (It could be a single 99% opaque pixel.) This will force Muse to encode as PNG. PNG compression is lossless and thus doesn't introduce any compression artifacts. However, an average PNG can be 5 times the size of a JPEG for the same image, so there is an impact to webpage download performance.
    *For PSD files Muse has to encode the original PSD data into some web-friendly image format. If an image is resized in Photoshop and placed Muse won't resize/resample the image data, but it will encode it as JPEG or PNG depending on whether it contains transparency.

  • Using local/testing server with cs5 inserting images look fine in the split screen but do not show

    Hi
    If I open example: header.php and insert any photo jpeg/.html ecs i can see the images in the split screen but not in the browser if i save then refresh. I am able to make any change to the code ecs. and they are reflected just fine. I have tried this with my fireworks images .html and when that did not work i tried a strait jpeg off the desktop. This all did not work. I have deleted the local server then step by step created a new one via devnet instruction. This did not work! everything looks fine i even tried in 3 sep browsers with 0 luck....There is no remote server connected at this time because i am making a child theme for my current site. After all changes are done we will the ftp the word press files to site and change.
    Ps i even started over from scratch with 0 positive affects....

    After a lot of pain!!!!!!! the issue is fixed lol After 3 weeks I have overlooked the obvious !!! so the simple fix was the path of the image. Yes i feel stupid 10 years in lol....
    Apparently dreamweaver cs 5 will not use the full path when inserting images into the page example: If you drag the image out of your assets folder or however you do it, DW will give you a path like this <img src="images/glass.jpg" width="800" height="729"> This is not the full path and when your pist!!! you cant see things like that ;( so the image path should look like this:
    <img src="wp-content/themes/adszoom/images/glass.jpg" width="800" height="729">
    also in the html files example of bad then good!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    NOW THE GOOD!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    THIS LINE IS YOUR ISSUE
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    Ok thanks and if there are any issues with dw please ask: [email protected]

  • Images look blurry in small, medium and large view in ADE

    Hi,
    I am working on creating an ePub compatible on ADE, iPad, Kobo and Mobi. I have fixed the issue of image overlapping in ADE view by keeping the width as 100%, but the image looks very blurry on ADE.
    Does anybody advise?
    Thanks,
    Sathish

    It may sound counter-intuitive, but could you try disabling graphics hardware acceleration? Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, is the issue resolved?

  • Having trouble with images looking blurry

    Please Help!
       When I save two images in photoshop (save for web, maximum jpg) they both look great on my macbook pro. However, when I upload them to my godaddy ftp, and view on my IPAD, one looks fine and the other looks blurry. They are both the exact same width, how can one look sharp and normal....and the other one look blurry???
    NOTE: After ive uploaded to the ftp, when i view on my macbook pro, they are both fine, but when i view on my IPAD, one is fine and the other is blury.
          www.tellysplace.com/womensbottoms.jpg   (the blurry one)
         www.tellysplace.com/womensblouses.jpg  (this one looks fine)
    Please help!!!
    Thank you,
       Jordan

    I am not seeing anything blurry with the first link. My guess is the height is different and your ipad is scaling it. But if your css is set to pixels it shouldn't.

  • Upscaled images look blurry, is there a way to sharpen them? In particular, zooming on pages with images that actually contain only text are hard to read.

    I am zooming in on my homework in mastering physics. I am using a large screen and sitting far away. It uses a lot of images containing the text I need to read, but when the images are upscaled, they become very blurry and hard to read. A simple sharpen effect after it is resized would fix the problem. Is there a way to do this in firefox? like a command line switch or maybe something in about:config? Thanks

    It may sound counter-intuitive, but could you try disabling graphics hardware acceleration? Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    orange Firefox button ''or'' classic Tools menu > Options > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    If you restart Firefox, is the issue resolved?

  • Why does a TIF image look blurry when placed in InDesign file?

    Hi all,
    I've placed a logo in my InDesign file that I saved out of Photoshop. It appear blurry when in InDesign and I do have it set to high image quality display so that isn't the issue. It is also set as CMYK and I haven't resized it after saving from Photoshop.
    I tried saving a jpg so it would be crisper but then I have a white box behind it when placed in the InDesign file.
    Any help is greatly appreciated as I need to send it to print but can't let it go until I'm sure it won't print like a blurry mess.
    Thanks

    Sub-pixel sampling. Read up on it. you are placing your images at odd values and it gets resampled. Can be anything from the image inside the frame, the image frame itself, some styling option in ID...
    Mylenium

  • 16x16 png image looks blurry in flash mx at an integer x y position

    I have few small png images (16x16 px) when I place them on
    stage it shoudl look best when placed at an integer x and y
    position.
    e.g. x=100 and y=50
    But in MX it only looks clear when placed at an integer with
    .8.
    e.g x=100.8 and y=50.8.
    In MX 2004 and later it looks best at integer values on
    stage, as it should be. I didnt changed anything in the image
    properties (smooth, quality, etc).
    Is this a known Flash MX issue, any ideas?
    Thank you.
    - Adrian.

    ahhh yes - i see the differenc enow. Afaik, there wasn't any
    difference in the way flash versions
    handles whole numbers. i will try and find your fla today -
    what was the url to it?
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    adrianTNT wrote:
    > I dont want to sound anoying but don't you see the
    blussy icons in 2.html? Here
    > is what I see:
    >
    >
    http://adriantnt.com/temp/blurry_icons.jpg
    >
    > That is in Flash Player 9 IE and PLayer 8 Mozilla, same
    thing.
    > The images are png placed directly on stage, not inside
    clips so no
    > registration points to set.
    >
    > The problem is that I want to distribute the icons for
    free as a flash library
    > but imagine how my instructions would sound:
    >
    quote:
    "If you use MX 2004 place them at integer value, if you use
    mx place them
    > at a .8 value but if you have two then place the second
    one at .8 and the first
    > one at integer value"
    > // That doest sound too good, does it? :)
    > I will probably just make it compatible with MX 2004
    only if no one has a
    > solution or knows the cause for this.
    > Thanks.
    >

  • Why do my images look blurry when opened in photoshop?

    Hi! i was just wondering if i could get some help with a problem i've been getting since yesterday.
    Before yesterday morning, my photoshop was working just fine but then yesterday morning when i opened this image.
    It would look like this
    instead of it looking like the first image above, the thing though is when i export the image from photoshop as a png, jpeg or any other it looks normal again like this.
    This is the first time this has ever happened so i'm not really sure about what to do.
    I'm using photoshop cs6 and i've also uninstall and reinstall photoshop about 2 times now but it doesn't fix it
    so if anyone can help me that would be great.
    Thanks.

    ssprengel wrote:
    The screenshots you’ve posted look very similar to me, but they are all composed of tiny dots not a continuous-tone image.
    Yes.  They don't make any sense to me either.  Are we supposed to be looking at a blank dark gray rectangle, or has the upload process failed the OP ?

  • Still Image looks blurry when zoomed

    Hello, I am using FCP 5 and I noticed that when I zoom in on a picture, even if it's resolution is much larger than 720 x 480, the picture seems blurry. I tried de-interlacing, however it still remains blurry. In the viewer it seems fine, however once I put it into the Timeline to be viewed in the Canvas, it looses it's clarity when zoomed. Any suggestions?

    Mark,
    Is the project you are working with one that was originally created in an older version of FCP (like 4.5) then upgraded to 5? If so, you might want to try changing your render setting from normal to linear. If that does not do the trick, I would recommend setting up an external monitor. Judge by that- not the canvas.

  • Image looks great in PS- when I go to print it looks grainy in printer preview dialog box and prints blurry. Why?

    Image looks great in PS- when I go to print, it looks grainy in printer preview dialog box and prints blurry.  Why is this happening? 

    PS CC, Yosemite, Epson 3880 (called espson to make sure it wasn't something with that), saved as a tiff/psdjpg- all files behave the same way.  When I open the raw file- and only crop the image- it behaves this way now- with grain and blur when printing.  No other files do this in the same shoot.  I worked on this image- could something have gotten corrupted along the way such that now even opening the raw file creates this problem.  SInce upgrading my computer -  a window pops up when I open PS that says I need to update my graphics card?? for 3D- I'm not using 3D- so I don't know if that means anything.  I have to leave for about an hour- but greatly appreciate any feedback. I will be in touch. Thank you.

  • Inserting images in a collapsible panel

    Can anybody help with a problem about inserting an image into
    the tab of a collapsible panel as a visual clue to users that they
    can open/close the panel? I'm trying to ensure that users don't
    just see the tab of the panel as a kind of good looking heading but
    that the images (two - one for open, one for closed) would give a
    visual clue that the tab actually opens when clicked.
    I'd be very grateful for any help, thanks, st44

    By managing the table's default cellpadding and cellspacing.
    Are you
    setting them to zero?
    If that's not happening then we would need to see your code.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "OxfordFishSalon" <[email protected]> wrote
    in message
    news:fulior$9i1$[email protected]..
    > When I insert images in a table and align them right,
    for example, there
    > are
    > still a few pixels between the edge of the table and the
    image on the top
    > and
    > right.
    >
    > How do I make an image go to the absolute edge of a
    table?
    >
    > Thanks,
    > Chris
    >

  • SCN document: 'Insert Image' greyed out at a certain stage/size

    I noticed  a similar issue likeTammy has reported in discussion/thread .Cannot insert or upload an image
    After having inserted text and several images to a draft document, the 'Insert Image' icon became greyed out at a certain stage/size.
    I did some tests following document Solution for Error: Cannot Insert Images on SCN Content, but the the behavior remained the same. Only after having deleted the last inserted image in the document > Save Draft > Edit again the 'Insert Image' icon was not greyed out anymore which is argueing for a size restriction.
    The same html coding as in the document put into a blog does not grey out the ‘Insert Image’ icon. But I found out that after clicking on the ‘Insert Image’ icon > ‘From your Computer’  tab ‘Browse’ is greyed out. Strange and argueing against a size limit is, when I choose ‘Uploaded Images’ I can select images and still  insert them into the blog.
    Does someone have similar experiences / can assist.
    Thank you, Barbara

    We have a recent discussion in SCN support.
    He has same problem. Have a look into the discussion Issue with 'Insert Image' button while creating document in SCN
    I suggest to split you document into two part as part 1 and part 2.

  • Why does my high res photoshop image appear blurry when placed in InDesign and Exported as PDF?

    Hi there,
    I have a problem I've been trying to solve for days but just can't find the answer anywhere on the internet.
    I have a large, good quality photoshop file (2268 x 979 pixels, resolution 300 pixels per inch). When I place it into InDesign, the image appears OK (I've changed my display settings to HIGH) - I then resize it in InDesign to 10% and the file still looks great! Then, when I export it as PDF (high quality print) it looks blurry.
    Does anybody know why? The strangest thing is, I've placed other photoshop images in the same InDesign file and they look crystal clear. It is just this one I am having trouble with. I've saved it in the same folder as the other pictures, I've tried placing it as psd. , jpg. , photoshop pdf, png. everything...
    The image looks great in both photoshop and indesign, only when exported as pdf it looks awful.
    Any help will be greatly appreciated,
    Many thanks in advance!
    Weronika

    It's probably the extreme reduction -- you're throwing away 90% of the image pixels and interpolating, and then using jpeg compression on top.

  • Inserting Images in DW

    Hi
    I've inserted an image (using Insert Image key) as a
    "background" using a table cell over which I've put some writing in
    a layer. When I load it up in DW usng F12 the image/writing looks
    great but when I host it to the web I dont get the image but a
    little box in the top left hand corner (the writings fine). Spent
    the last hour trying to sort this and now pulling out my hair with
    frustration (haven't got much left anyway). Please help!
    Many thanks for your comments

    perferably jpg, gif or (to a lesser extent PNG) usually 72dpi
    and not more
    than 50k per image (preferably less)
    Gerry
    http://www.FinanceExtra.net/SubmitReview
    - tell us your experiences with UK
    companies.
    http://www.UsableHost.co.uk
    - UK Windows Hosting
    "Steve" <[email protected]> wrote in message
    news:[email protected]..
    > On Sat, 10 Feb 2007 08:22:49 +0000 (UTC), "Mike93510"
    > <[email protected]> wrote:
    >
    >>Thanks. I hadn't reallized that the image needed to
    go to the server as
    >>well. Does it need to be saved as a particular format
    (jpeg etc).?
    >
    > The same format as it is on your local computer.
    > --
    > Steve
    > steve at flyingtigerwebdesign dot com

Maybe you are looking for

  • HT5312 there are no link to reset security question in my E mail

    i ask apple team several time how to reset security question. i know step to reset but there are no link to my e-mail. Why??  no assist

  • Lost emails in inbox

    i keep loosing my emails in the inbox and i dont know how to retrieve them

  • OS X 10.5.8 Aluminum/Numeric keyboard

    Hi, I have 10.5.8. I bought the new numeric keyboard. and F7-F12 are dead. I downloaded Spark, but can't find a shortcut script to use. I only want volume. Can anyone help? Do I have to upgrade? Thanks, Sean

  • Folio Builder CC not working.

    Hello All I am in dier need of assistance - My folio builder panel will NOT import layouts, existing ones, new ones, any layouts. Won't import single, won't import multiple. I can create the folio shell but I can't import any information into it. Bee

  • CMS(Change Mgmt System) for Portal

    Hello All, Can i use my CMS (Change Management System) with the Portal also to keep track of the Transports between Portals. Any guide or help link would be appreciated Regards Vaib