Corrupted image shown when horizontal elasticity set to "contract"

Hello.
Using Forms and Reports 10.1.2.3.0
I have a report where I try to show images horizontally centered in their surrounding frame.
For this I created an image-item inside the frame (a repeating-frame, because the images are fetched from the DB), manually centered it inside the frame, attached it with an anchor to its surrounding frame, and set its horizontal elasticity to "contract" (vertical elasticity is set to "fixed"). This is actually the preferred method for doing this and a few threads in this forum recommend it.
What I got in the resulting PDF was a corrupted image under certain circumstances.
To narrow this down I created three different images (width*height)
1. 1000*666
2. 1000*750
3. 1000*800
loaded them into the DB, and tried to run the PDF. You can see the result in the following screenshot:
When I set the horizontal elasticity to "fixed", the image is not corrupted (this is not a solution since the image gets left-aligned then).
Setting the OUTPUTIMAGEFORMAT to something different than the default (JPEG) didn't change anything.
Interestingly enough the Foxit PDF-Reader shows it correctly, while both AdobeReader X and XI and even Inkscape show the image corrupted (not only on my PC).
We tried this with several images/photos, and the only ones being shown correctly seem to be images with an aspect-ratio of 4:3 or higher. I was not able to pinpoint exactly at which ratio this behaviour manifests itself.
Anyone got an idea what may have caused this?
Thanks in advance
Markus

Addendum:
Setting the vertical elasticity to "expand" fixes it too, but since we often have images with an aspect-ratio of 3:4 or even higher I can't use this, since they would use way too much vertical space (and would negatively impact our layout).

Similar Messages

  • TS3682 back up is corrupt message shown when start back up what it means ?

    back up is corrupt message shown when start back up what it means ?

    If I am guessing that app correctly, then install the latest s/w version 1.5.9.
    Was at 1.4.3 previously and faced the same issue as yourself when I upgraded to iOS 5.0.1. Solved it by grabbing the latest sms export s/w.

  • Attempting to upgrade to Firefox 3.6 (using an ancient Mac OS 10.3), but received an error message (corrupt image file) when downloading - any way to correct this with my current OS?

    I'm currently trying to update a few programs on my good old (VERY old) Mac Powerbook, but I ran into an error when downloading Firefox version 3.6...I'm currently running Mac OS X 10.3.9, which isn't compatible with the most recent versions of Firefox (or anything, for that matter), but it should still allow an upgrade of version 3.6; however, once the file finished downloading, an error message popped up indicating there's a corrupt image file. Is there any way to work around/correct this problem, or am I stuck with my old version of Firefox until I bite the bullet and upgrade my OS??? Any help is greatly appreciated!!

    Firefox 3.6 requires at least OS X 10.4, the last version of Firefox that runs on OS X 10.3.9 is Firefox 2.0.0.20 available from https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/mac/en-US/

  • Corrupt image formatting when creating pdf from embedded visio image in MS word

    Hello, Using Adobe Acrobat 9 standard and trying to create a PDF file from an MS word (version 2003) document.  PDF file created is fine except for an image (embedded visio diagram imported into word).  When created in PDF, the image is missing many of the diagram labels, and other text boxes are in the wrong font and wrong location.  I don't know if it's my Adobe Acrobat or MS Word settings that need to be updated.
    thanks, NB

    Dear fellows,
    the problem is still present.  My system:Windows 7 32-Bit Prof, MS Office 2010 Prof, Acrobat X Pro 10.1.1, Vision 2010 Prof, all updates installed.
    Problem #1: Even the latest Acrobat X 10.1.1 version causes Visio 2010 to start with error messages, origin: the Acrobat Add-In.  Therefore I de-activated the Acrobat Add-In, again, as in the past.
    As I design grafics with Visio 2010, I mark them in the active Visio window, copy the marked parts and then insert them into my Word-Document.  So far, so good and as I want it.
    The (still present) problem: I can produce a PDF file using the "save as Adobe PDF", but the Visio drawing is incomplete and corrupt.  E.g. arrows as line endings have disappeared.
    PS: But using Adobes PDF printer sets the embedded Visio drawing correctly!  But using the printer one looses some features of the "save as Adobe PDF" command.
    Well, probably one day ...
    Regards,
    Rückenlehne.

  • No images shown when importing images from external HD

    This only happened recently so I'm not sure if this was due to an update in Aperture or MacOS.
    Anyways, when I try to import images from an external HD, I cannot see the images. The images are there when I check thru Finder but I cannot see any from the import window in Aperture.
    The problem is also inconsistent. There are folders where I can see images but for most I cannot see anything.
    For local disk it works.
    Why does this happen and how can I solve this? thanks

    Are you sure they aren't in your library already? Have you tried de-selecting "don't import duplicates" and see if that changes anything?

  • When I open an email with images, Outlook Express keeps defaulting to Internet Explorer rather than FireFox to get the image, since I have IE disabled this means that I see no image. I have FF set as my default browser. Please can you help?

    I first noticed the problem 3 months ago when a virus set a proxy on Internet Explorer. Removal of the proxy brought the image back, but this showed that Outlook Express uses IE to get images even when FF is set as default browser

    I might be able to experiment with this a little.
    Are you running a recent version of Outlook Web App (i.e., Exchange 2010)?
    When you save files using IE, what format are they in (e.g., EML, RTF, HTML)?

  • Spark list horizontal scroller doesn't actualize when rows is set lesser than list container

    Hello,
    The size of the Image control is set larger than that of its parent Group  container. By default, the child extends past the boundaries of the parent  container. Rather than allow the child to extend past the boundaries of the  parent container, the Scroller specifies to clip the child to the boundaries and  display scroll bars.
    In the spark list, when I change the list dataProvider and the size of the Image control is set lesser than that of its parent Group  container, the horizontal scroller doesn't actualize.
    thanks.

    <!-- Simple example to demonstrate the Spark List component -->
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" applicationComplete="comp()" width="260" height="400">
        <fx:Script>
            <![CDATA[
        import mx.collections.*;
        public var dpArray:Array;
        [Bindable]
        public var dpCol:ArrayCollection;
        public function handleClick():void {
            dpCol.removeAll();
            dpCol.addItem({ label:"spark test" });
            dpCol.addItem({ label:"spark text" });
        public function comp():void {
            dpCol = new ArrayCollection(dpArray);
            dpCol.addItem({ label:"spark list horizontal scroller doesn't actualize when rows is set lesser than list container" });
            dpCol.addItem({ label:"spark test" });
            dpCol.addItem({ label:"spark text" });
             ]]>
        </fx:Script>
        <s:Panel title="List">
            <s:VGroup left="20" right="20" top="20" bottom="20">
                <s:List width="200" id="lis" dataProvider="{dpCol}" height="120"/>
                <s:Button id="button1" label="Click here!" width="100" fontSize="12" click="handleClick();"/>
            </s:VGroup>
        </s:Panel>
    </s:Application>

  • Images appear glitchy (horizontal lines in weird places) when I try edit in any way

    I have just downloaded CC and I'm using latest version of photoshop CC as of the date of this post, and my mac spec is:
    In the above photo I simply tried to add black font on top of a image, the font colour is set the black and after i exit text edit mode the font colour goes to what I can only describe as TV Static colour.
    In the above photo I simply tried to delete the white space at the bottom with the magic wand selection tool, it for some reason deletes a random square from the image, in this example the square is in the middle other times it is t the side or sometimes its in the area of the white space meant to be deleted.
    I can't find any threads on this as Im not entirely sure what I should be googling. Any help with this is greatly appreciated.

    Sure is a strange one..
    Firstly just to confirm TC2 is plugged into TC1 by ethernet and bridged?
    How are you trying to access TC2?? is it wireless.. or ethernet? If both are running at once turn one off.
    How is the wireless setup if you use wireless?
    Since PC need SMB access.. and the Mac is using AFP access.. sometimes strange things happen in that files are identical but different. Mac uses resource forks and other weird stuff.. linked to the file and when you try and open it on a pc it does strange stuff.
    Make sure the TC is setup PC/SMB compatible.. ie all names are short, no spaces, pure alphanumeric.
    That includes the TC name, Hard disk name and wireless names.
    Setup workgroup correctly .. ie WORKGROUP generally.
    Set user access correctly.. I turn on the guest account to read and write access.
    If you don't have bonjour for windows loaded make sure it is.. or the full airport utility.
    I recommend you create a directory from windows..
    From the Mac, open one of your projects in Lightroom and export.. save as the file to the new directory in TC2 created from windows. I don't use Lightroom so I am not sure what options are available.. but I would try and use some compatible format if the main format fails to open.
    Then try and open it again from windows.

  • Is there a Preserve Image Dimension when Relinking Setting in Framemaker 9?

    Hi,
    I am using Framemaker 9 (structured Frame) and would like to know if there is a setting (similar to InDesign) that preserves image dimensions when relinking. In InDesign, you can turn this setting off so that the updated linked graphic will not scale or move in the document. Does Framemaker have a similar setting? We use Illustrator CS3 to create graphics. These graphics are then saved to Adobe Acrobat X Pro PDF files. I Import by Reference the PDF file using the Grahic element in Structured Framemaker. If I make any changes to the graphic file in Illustrator, the graphic that was imported into the Framemaker document shifts inside the anchored frame and then I have to recenter all the updated graphics in Framemaker. Is there a setting in Framemaker that will allow me to update a graphic file in Illustrator without having to recenter it in Framemaker?
    I currently have the following File Handling & Clipboard options selected in Illustrator:
    Copy AS:
    -PDF
    -AICB (no transparency suuport)
    -Preserve Appearance and OverPrints
    But, these settings do not seem to help much for the imported graphic files in Framemaker.
    I appreciate any information you can provide.
    Thank you for your help.

    *** haven't checked, because I don't have any pre-9.0 files easily available ***  ... but from what I remember, if you're really just viewing the files in 9.0 you should need to save them explicitly back to an earlier version. FM may mark the files as "changed" when it opens them, but that's because it checks things like datestamps and cross-references. If you do not, yourself, explicitly change any content in the file you have opened, you don't need to save the changes; just close the file unsaved.  Check my supposition with a couple of files before relying on it! And other people will be able to give you a more detailed explanation of why file you haven't touched yourself still show up as "changed".

  • On receiving jpegs via email, sometimes they get corrupted, and there are horizontal blocks appearing on the image

    On receiving jpegs via email, sometimes they get corrupted, and there are horizontal blocks appearing on the image that distort the image. Help???

        Hi Bruce523,
    Let's get to the bottom of this, your efforts are greatly appreciated! What is the software version on your device:http://vz.to/ZVhZsh ? I look forward to hearing from you soon.
    Thanks for your contribution to our community forums,
    AyaniB_VZW
    Follow us on Twitter @VZWSupport

  • HT1198 I shared disk space and my iPhoto library as described in this article. When creating the disk image, I thought I had set aside enough space to allow for growth (50G). I'm running out of space. What's the best way to increase the disk image size?

    I shared disk space and my iPhoto library as described in this article. When creating the disk image, I thought I had set aside enough space to allow for growth (50G). I'm running out of space. What's the best way to increase the disk image size?

    Done. Thank you, Allan.
    The sparse image article you sent a link to needs a little updating (or there's some variability in prompts (no password was required) with my OS and/or Disk Utility version), but it worked.
    Phew! It would have been much more time consuming to use Time Machine to recover all my photos after repartitioning the drive. 

  • When I attempt to download Firefox 3.5.10 I get a warning stating "disk image failed to mount - corrupt image", what can I do?

    I am attempting to download "Firefox 3.5.10", each attempt the results state "The disk image failed to mount due to corrupt image". I really need this browser for my on-line learning. Please help! By the way 2.0 downloaded fine, but is not compatible with the University web site.
    == This happened ==
    Every time Firefox opened
    == Every time I attempted to download Firefox 3.5.10

    Ran into this problem this afternoon. Had to download after the latest version failed to start after progressively becoming a bit tweeky. Got the failed to mount message also broken pipe, even though I am running 10.4.
    I went into Mac OS Updates and downloaded the latest version of Java Script. After restart I was able to mount the new Firefox and it seems to be working now.

  • Any new fixes for corrupt images in Lightroom 4.4?

    I have seen many threads on this and tried a lot of the tings people say to try. But I do get corrupt images in Lightroom. I currently have an AMD FX-8150, 32GB ram, 2 SSD Raid0 + USB3.0 drives as backup.
    Drive and Memory:
    Note, I only keep up to the last 3 shoots on my SSD, the rest are stored on my USB3 drives. Any time I import files to the USB drive I get no corruption. Now that would imply that I have bad drives, I have run diskcheck and contacted Muskin and they had me run some disk checks, speed tests, +other things and identified that the drives are running fine with no issues and this has to be a software issue.
    I have run memtest86+ with no errors, also ran memtest86+ with my memory in another machine with no errors.
    To rule out the card reader:
    When I just copy files from my CF Card to a folder using explorer all images import fine and you can even open every image in photoshop with no issues. As soon as you add those files already copied to the HD to lightroom, they start to corrupt. I just recently used the windows explorer method and added ~400 images to lightroom, all images imported fine, when I later accessed lightroom(Today), about 10% of those images are not corrupt.
    Does anyone have any suggestions? Could it be because I use Raid0? Or even SSD drives?
    This is quite annoying and I would like to get things fixed.

    jproductions111 wrote:
    Usually when Lr renames the photos as you saw kianjillwedding-19, Lr changed the name from IMG_1968. Thats may have something to do with the corruption.
    I don't see how. Renaming shouldn't change anything on disk except, well, the name - and of course update a bunch of things in the catalog.
    jproductions111 wrote:
    I will get back to you if the problem continues but everything still seems to be fine in Lr5, even after letting Lr rename all the photos with my current(today's) import of 700 images.
    OK - thanks.
    jproductions111 wrote:
    I know you don't believe its software
    ~impossible it's Lr4 software. Theoretically possible, but highly unlikely. As I said, Lr4 should never be rewriting those files, and therefore essentially can not corrupt them. I mean, its possible that it got it's brains scrambled, and went ahead and rewrote them, for god-knows why or just for the he|| of it - because some bits seemed to be set wrong..., thus invalidating the assumption that it's not rewriting them. It's just that this scenario is the least likely. I mean, Jeff Schewe has given me spankings more than once before, for even bringing it up, since it's so unlikely...
    jproductions111 wrote:
    maybe Lr 4 was causing some sort of bug to make the hardware malfunction
    Although theoretically possible, I'd still venture to guess that's not what happened.
    jproductions111 wrote:
    this is not happening to my in Lr5.
    Didn't you also change your disk drive situation around just before you started using Lr5?
    jproductions111 wrote:
    But I am keeping my fingers crossed.
    Me too - please keep us posted...
    R

  • CS3 corrupting images

    I am using CS3 in OS X 10.5.  All of a sudden my photos are getting corrupted.  I can see an image in Bridge, but when I click on it the image becomes completely distorted.  It becomes colorful horizontal lines.  I tried removing CS3 and re-installing it, and the corrupted images looked ok after this, but again when I clicked on them, they would get distorted again.  I have no idea what's causing this, but I'm hoping someone can tell me, so I know how to fix it and avoid it in the future.
    Thank you!
    Tom

    Thanks for the reply Chris!  That was one of my guesses.  I ran disk repair on the drive and it didn't come up with any errors, is there a test for the RAM?  I've called Apple before with photoshop issues and they've said they can't really help with 3rd party apps, but this is a fairly new iMac.  I will be sure apple care is extended for it and work with them.  In the meantime, I deleted all the files that seemed to be having issues and will watch to see if any others have problems, but it seems to be limited to one folder so far.
    Thanks,
    Tom

  • RAW Images Alter When Saved After Processing in CS5 Camera RAW?

    Hi,
    I am currently experiencing a problem in Photoshop CS5, where after processing a CR2 RAW image file in Camera RAW, whether I then decide to open the image straight into CS5, or save as a jpeg or tiff file, the image completely alters from what I was previously seeing in the Camera RAW window?
    The saved jpeg/tiff, or image now shown in CS5 is now very tinted, where objects that were perfectly white in the Camera RAW window are now a dirty yellow colour.
    I was just wondering if there was any advice any of you could give me as to what the problem might be?
    I have made sure that both CS5 and the Camera RAW window are both set to sRGB, but it has had no effect on the problem.
    Thank you in advance for any help
    Russ

    Color Management in Photoshop.
    Sent from phone.
    În data de 02.09.2012 23:08, "Tube Screamer" <[email protected]> a scris:
       Re: RAW Images Alter When Saved After Processing in CS5 Camera RAW? created by Tube
    Screamer <http://forums.adobe.com/people/Tube+Screamer> in *Adobe Camera
    Raw* - View the full discussion<http://forums.adobe.com/message/4667772#4667772

Maybe you are looking for

  • Safari 4.0.3 crashes on e-mail entry Facebook

    I've been meaning to write about this for a while but everytime I go to respond to a Facebook mail message, it constantly crashes Safari. For e-mail replies in Facebook I use Firefox and that works fine. Has anyone else noticed this. It strikes me as

  • People can't see my contact requests

    The last 2 people I have tried sending contact requests to have not received them, and then whent hey search for me they can't find me.  Is this a problem in my settings?  I checked but couldn't find anything.

  • With recent update I've lost access to my top sites--how get it back?

    There used to be a blue symbol at the top of the page (to me it looked like an anvil), click on it and my top sites appeared. Now, no anvil; nothing I can identify as an access to my top sites. Top sites are all I have to find things; bookmarks don't

  • Sending music,videos and photos via Bluetooth

    What can I do to receive and send music,photos and videos via Bluetooth?

  • Ping, my iTunes Library, my disappointment !

    At first glance Ping doesn't appear to be very intuitive. My iTunes Library is full of information such as Play Count, Ratings and Genres etc. It also runs Apples Genius scripts to recommend tracks based on existing tracks in my library. When setting