Why is the symbol of a broken photo the result when resizing with pse9?

I have been able to resize photos for email in the past, but now it just does not work for me.I go to edit, resize, image size, then reduce width from 10 (approx) to 3, save with a new name, close, click on organizer,  and this broken photo image comes up.
There are some pictures I want to send, and can not.
Your help will be appreciated

As with so many others, I'm fighting a losing battle of timer
issues.  I created a small test vi to see if I could use the
method Lynn described--a gif of the block diagram is included as
attachment labview3.gif.
After running this for about 16 minutes I find that the timestamps
given by "Get Date/Time in Seconds" are about 6 msec. behind the method
of getting one Date/Time stamp before the loop starts and using the
millisecond "Tick Count" to measure the time.  This is using
LabVIEW 5.0 on a WIN '98 machine with several processes running. 
A copy of the front panel is included as labview2.gif.
I created a similar vi using LV 7.1 on an XP machine with few processes
running and discovered a discrepancy of about 7 milliseconds after a 3
hour run time.  My question is, which clock is correct?  Is
the system clock losing time or is the millesecond timer gaining time
or is it a little bit of both?
(I'm still working on a way to used this combined clock for time stamping even after the millisecond clock rollover.)
Attachments:
labview3.gif ‏20 KB
labview2.gif ‏28 KB

Similar Messages

  • How to make the symbol to be resolved within the shared library ?

    I have two definitions of a symbol, one is in the main code, the other in a shared library. I want the symbol to be resolved within the shared library if it needed in the shared library.
    From the 'C++ User�s Guide', use the option '-Bsymbolic' to build the shared library is a choice. But it also said 'Never use -Bsymbolic with programs containing C++ code, use linker map files instead. So I have to try to use the map file, but I did not get more useful information from 'Linker and Libraries Guide'.
    I want to know what should be included in the map file and how to generate the map file?
    Additionally, from the 'Linker and Libraries Guide', the 'Direct Binding' also could resolve this problem. And I tried to build the shared library by the '-B direct' option, it works.
    Could anybody tell me what's the difference between the '-Bsymbolic' and '-B direct'?
    Any comments are appreciated.

    You didn't provide fun.h, and you didn't show all the commands that you must have used -- there are no commands that compile the source code into .o files. So I can't tell why the -xldscope option didn't work for you.
    Problems and errors that I see in your example:
    Functions func and swap are referenced from C code, but swap and one of the func functions are compiled by the C++ compiler and will get mangled names. If you compile a function with the C++ compiler that is to be called from C code, you need to declare the function as extern "C". But the extern "C" in a shared header needs to be guarded by +#ifdef __cplusplus+, since a C compiler won't understand the declaration.
    When you build a shared library, you must explicitly list the libraries it depends on, since no dependencies are created by default. For a C++ library, you need at least -lCrun -lc in that order. Otherwise, in a real-world program you can have program failures due to incorrect library initialization order. To be sure you have listed all needed libraries, use the -zdefs option, which causes the linker to complain about missing definitions.
    To be sure the shared library is picked up at run time, provide a RUNPATH via the -R option when you build the executable.
    The -xldscope option must appear on compile commands for the files where you want it to take effect. It has no effect on a link command, because the option affects how code is generated.
    Here is my rewrite:
    % cat fun.h
    #ifdef __cplusplus
    extern "C"
    #endif
    void func();
    #ifdef __cplusplus
    extern "C"
    #endif
    void swap();
    % cat fun.c
    #include <stdio.h>
    #include "fun.h"
    extern "C" void func()
        printf("func in the shared lib\n");
    extern "C" void swap()
        func();
    % cat fun_in.c
    #include <stdio.h>
    #include "fun.h"
    void func()
        printf("func in the main code\n");
    % cat main.c
    #include <stdio.h>
    #include "fun.h"
    int main()
        func();
        printf("invoke the swap:\n");
        swap();
    % CC -G -xldscope=symbolic fun.c -Kpic -o liboutside.so -lCrun -lc -zdefs
    % cc -o run main.c fun_in.c -L. -loutside -R .
    % ./run
    func in the main code
    invoke the swap:
    func in the shared libAs you can see, it works as advertised.
    Please note that the -xldscope option affects all functions in the module. If you need more fine-grained control, you must add declarations to the source code, or use a mapfile instead of -xldscope .

  • What do the symbol and stand for in the following script? not like displa

    What do the symbol *>* and *>>* stand for in the following script? It is displacement? They do not like displacement symbols.
    $JAVA_HOME/bin/java -cp $CLASSPATH $JVM_OPT $SYS_OPT
    oracle.sysman.integration.coherence.EMIntegrationServer *>* $COHERENCE_
    HOME/mgmtnode.log *>>* $COHERENCE_HOME/mgmtnode.err &
    Thank you

    jverd wrote:
    BigDaddyLoveHandles wrote:
    But the example, if it's correct, seems to be using >> to redirect stderr, not to append stdout. The OP should identify what OS and what shell they are using.In any unix shell I'm aware of, > is overwrite and >> is append.Which is why he said "seems to be using >> to redirect stderr". Which I read to mean that BDLH also found it to be incorrect but some "corner-product" shell may do this sort of thing (not that I know, or have heard, of any that do). ;-)
    In a bourne family shell, the initial construct would cause stdout to replace the log file and append the err file, and would not redirect stderr.
    If you want to send stdout to one file and stderr to another, with overwrite, it'd be
    command > logfile 2> errfile
    Correct, of course. ;-)
    And, of course, changing either of those ">" symbols to ">>" would append (that stream), but you've already said that. ;-)

  • How can I will declare the symbol u2018 (Single Quote) in the report

    Hi ,
    Could you please tell me how can I will declare the symbol u2018 (Single Quote) in the report.
    My requirement is that I have concate the data with single quote and after that I have to store the data in to an internal table and I have to download the data in the form text file in the presentation server.
    For example :
    Let the below data I want to download into the presentation serve in the format of text file by storing in internal table.
    Assume all are constants:
    1st line : abcu2019add
    2nd line :  defu2019gef
    Thanks in advance.

    Hi Jyothi,
    Thanks for the quick reply .
    I can agree with you are point but My requirement is like this I am explaining clearly.
    I have declared the internal table like this.
    DATA: BEGIN OF OTAB OCCURS 0,
             LINE (9024),
           END OF OTAB.
    So I have to append the each line item into the internal table.
    So I am explaining what the data I have to append
    Ist line contains
    'UNBUNOC:2020308u2019 where 020308 I will get the  date from reguh table
    2nd line contains:
    'DTM+20020510' where the 20020510 will be reference document number from the table reguh.
    So I want to declare a constant 'UNBUNOC:2
    2nd the date from reguh table
    And another constant u2018
    So that I can concate all the three and I can put into string and I will append into internal table and I can download the data into the presentation server.
    Please let me know if you need any more clarification regarding my requirement.
    Thanks in advance.

  • In iphoto how to get the gold you delete a photo warning message when you check the box not ask

    in iphoto how to get the gold you delete a photo warning message when you check the box not ask

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7 or later: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • Help i have an iphone 5s and whenever i dowload an app or update, the symbol turns to install then the circle loading, then all of a sudden it goes back to the price symbol. I am having a tough time can anyone help me.

    Help i have an iphone 5s and whenever i dowload an app or update, the symbol turns to install then the circle loading, then all of a sudden it goes back to the price symbol. I am having a tough time can anyone help me.
    ________________________________________________________________________________ _____________________________________________________ Also all my wifi apps dont connect to the internet except for safari and maybe appstore HELP??!!!!!
    Both these problems are happening at the same time so i dont know if they are linked or something but please someone help

    Hello shahnaztech
    They probably could be related. Start with the articles below to troubleshoot issues with Wi-Fi as well as making sure that the router is using the recommended settings.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    iOS and OS X: Recommended settings for Wi-Fi routers and access points
    http://support.apple.com/kb/HT4199
    Regards,
    -Norm G.

  • Where can I find a list of the meaning of the symbols that can appear in the headline at the top of the screen on the ipad and iphone?

    where can I find a list of the meaning of the symbols that can appear in the headline at the top of the screen on the ipad and iphone?

    http://support.apple.com/kb/HT1558
    http://support.apple.com/kb/TA38663
    http://support.apple.com/kb/HT4982
    They are also listed in the built-in User Guide accessible directly on the iPhone in Safari.
    Find the "iPhone User Guide" bookmark, then go to iPhone at a Glance > Status icons

  • After changing batteries and up date my I Mac to 10.8.2, my BLUETOOTH disappear from my computer.  On the top line right corner the symbol says:  NOT AVAILLABLE, and the icon is not anymore int my computer's preference.  Anyone can help me here?

    After changing batteries and up date my I Mac to 10.8.2, my BLUETOOTH disappear from my computer.  On the top line right corner the symbol says:  NOT AVAILLABLE, and the icon is not anymore int my computer's preference.  Anyone can help me here?

    I've done it two or three time and I still have the same problem.  May be I do not do it properly so can you give me the right procedure.

  • I have all my music on my old computer but the port broke on the old computer and i want to put my music on my new computer but the usb port is broken on the old computer

    i have all my music on my old computer but the port broke on the old computer and i want to put my music on my new computer but the usb port is broken on the old computer

    See:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • HT5622 Do you think that apple would exchange my ipod gen 5 for another one because this one well, the screen isn't broken but the inside is half black and other colors? When it happened it was in its otter box, and i lost the receipt and got it on may?

    Do you think that apple would exchange my ipod gen 5 for another one because this one well, the screen isn't broken but the inside is half black and other colors? When it happened it was in its otter box, and i lost the receipt and got it on may? How much do you think it would cost please help me.

    If covered by warranty. See:
    Apple - Support - Check Your Service and Support Coverage
    Then if the iPod is within warranty, not abused Apple will exchange it at no cost. You can do it at an Apple store
    Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar                          

  • My mac doesn't have the symbol for apple tv in the top right hand corner, so i can't connect the mac and tv...why?

    Why not?!? I've been really disappointed with this, we got apple tv a couple of months ago...

    Hi @hmcgr26.
    AirPlay Mirroring requires either a Wi-Fi (802.11 a/g/n) connection or an Ethernet connection to the same local network that both your Apple TV and Mac use. Make sure that your Mac and Apple TV are connected to your WiFi.
    If your Mac supports AirPlay Mirroring, an AirPlay Mirroring menu extra appears in the menu bar when an Apple TV is on the same network. Turn on mirroring by selecting an Apple TV from the AirPlay Mirroring menu. The AirPlay Mirroring menu extra icon is blue when AirPlay Mirroring is on.
    If you do not see the icon, then you can turn it on via System Preferences > Displays.
    If you don't see AirPlay Mirroring in Displays Preferences, then your Mac model does not support it.
    If none of the above information helps you resolve your issue, then you may refer to Troubleshooting AirPlay and AirPlay Mirroring article: http://support.apple.com/kb/TS4215
    I hope that helps. Good luck!

  • Why isn't symbol isolation mode aligned to the pixel grid?

    So apparently, symbol isolation mode isn't aligned to the (global apparently?) pixel grid, rather the paths are displayed aligned to the origin presumably. The origin is not aligned to an intersection of the grid. Thus it becomes very difficult to create pixel perfect symbols. Paths that are snapped to the pixel grid are then redisplayed offsetting from the origin, causing bleeding in the isolation mode. If the origin is specified as the center that is (presumably it would work fine for a corner), you're going to have a bad time.
    Is this fixed in CS6?
    Also, has there been a feature added in CS6 to reposition the origin as the center of an object?

    Okay I have figured out a workflow that generally resolves all the peculiar behavior with align to pixel and symbols.
    Do not align to pixel your paths. Align to pixel your symbols. The symbol origin will be aligned to pixel and there will be no bleeding in isolation mode and you can snap to pixel the symbol itself.
    You still have to scale/adjust your snapped to pixel paths as they are expanded on a paste for some unknown reason. This is an issue of another thread but may be useful to complete the workflow.
    It still quite an issue though that for absolutely no reason, symbols without align to pixel are displayed as displaced from an arbitrary position of the origin in isolation mode. This is a bug I feel in the implementation.

  • HT4859 why can i NOT see my notes, photo's etc. when i sign into my icloud account?

    I don't understand why my notes, photo's Calendar are not availble when I log into my icloud.com account.  How do I know for certain that my photos & all are backed up???
    Thanks in advance!!!

    Data stored in a backup on icloud cannot be viewed.  Photos are never stored in cloud except when part of a backup and only those from the camera roll.  Again, while the photos may be in a backup, you cannot view them at icloud.com.
    Go to Settings>iCloud>Storage & Backup>Manage Storage.  Choose the device you want info on.  On the next page, you'll get a listing and size of all data store in the next backup.

  • How can I play an animation in reverse only if the symbol that contains the animation is visible? if the symbol is not visible have the trigger no longer target that symbol?

    Hi
    I have a button the does two functions at the same time. it plays a symbol's animation in reverse (in order to hide it) and it slides an element. the symbols animation is triggered by another button (which is not relevant) . So my problem is that if the animation has been triggered first than when the button is pushed the animation plays in reverse, the symbol hides and everything is fine, but if a push the button before that the animation will flash in reverse. SO how can I tell it to only play in reverse when the symbol's animation has run. I know it's an if / else statement but i have no idea how to do it.
    thx

    Here is a case close to your issue:
    if ( sym.getSymbol("Symbol1").$("Text").is(":visible") ) { sym.getSymbol("Symbol1").playReverse(); }
    else { sym.getSymbol("Symbol1").play(); }
    Demo files ==> isVisible.zip - Box

  • On 3 machines now the Windows Store is broken. The Install and Back buttons don't work

    Originally reported here:  http://answers.microsoft.com/en-us/windows/forum/windows8_1-windows_store/on-3-machines-now-the-windows-store-is-broken-the/8bafdc7a-a708-4012-a4f1-b98ab8788c28
    Advised to post here instead.
    Hi there
    On three separate Windows 8.1 Professional machines now, I've had an issue where the Store stops working properly for no apparent reason (no error messages or anything).  The store opens, and I can browse apps, and view individual apps, but
    once in the app view I cannot click on the Install button or the back buttons.
    They "light up" as if being pressed, but they don't actually do anything.
    I've tried all the various troubleshooting, including the Windows App troubleshooter, wsreset, re-registering the store files using powershell, and renaming the cache folder in my user profile. No effect.
    If I sign into the PCs as another user, then I don't get the issue. As such something is getting corrupted in the profile.
    We only have around 9 or 10 Windows 8.1 PCs deployed at our organisation for testing, and three of them have had this fault, which doesn't inspire confidence. As such, we cannot progress with further deployment until we have a fix in place that
    doesn't involve wiping the user profile.
    Any ideas please?

    Hi FangZhou CHEN
    I've discovered the cause of this error after much searching.
    Based on your suggestion, I checked the Event Viewer and found a string of "Application Error" entries similar to this:
    Faulting application name: WSHost.exe, version: 6.3.9600.17093, time stamp: 0x534765e9
    Faulting module name: sxwmon64.dll, version: 4.5.2608.0, time stamp: 0x52b2a853
    Exception code: 0xc0000005
    Fault offset: 0x00000000000257ff
    Faulting process id: 0xf40
    Faulting application start time: 0x01cfeeb1cc6d035e
    Faulting application path: C:\WINDOWS\WinStore\WSHost.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\sxwmon64.dll
    Report Id: 19ee9a1c-5aa5-11e4-8259-600292638f85
    Faulting package full name:
    Faulting package-relative application ID:
    Presumably the WSHost,exe process is critical to the Store and "Metro" apps?
    The offending dll file causing this process to fail, sxwmon64.dll belongs to a peice of security software on our machines called Lumension Endpoint Security (we're running version 4.5 SR2). We use this to control removable media (USB) and CDRW access for
    our employees.
    If I rename that particular DLL file, the store and the calendar app which I was also having issues with (it was blank), spring back into life.

Maybe you are looking for

  • Fbl5n report showing pritn output for a new customer on a new page

    Hello  All, In fbl5n when i execute for all the customers and give print command its printing every new customer on a new page but i want to print the data continously. Pls let me knw how to avoid this? Sunny

  • List of issues with DM6.0

    Here's my list of issues with Desktop Manager 6 that I would like to see addressed. 1) No minimize to system tray. This isn't a huge deal but I'd like to see it return. 2) Halt incoming e-mail to device when connected. This needs to come back. I don'

  • Assigning object of one class to object of another class.

    Hi, How will i assign an object of one class to an object of another class? Ex: ClassX A=some_method(); Now how will I assign the object A of class ClassX to the object 'B' of another class 'ClassY'.

  • Infoview pick list values and CR parameter values are not the same

    Hello All We have created created Crystal Reports based upon BW Query using Static Parameters as recomended by SAP. When we run the query in InfoView the Pick List is dynamically updated and returns the correct data for selection. When The Crystal Re

  • Want to make phone calls via bluetooth on my iPhone from iPad

    I can link my Garmin GPS to my iPhone via Bluetooth and make or receive phone calls. I would like an iPas app that provides the sametype functionality including: Make calls Receive calls Look uphone numbers Is this possible?  Using what app?