EMP image not being removed

DECLARE
jpeg_image_dir VARCHAR2(280) := 'C:\photos';
photo_filename VARCHAR2(280);
BEGIN
*:System.Message_Level := '25';*
photo_filename := jpeg_image_dir||'\'||LOWER(:key_block.key_item)||'.jpg';
READ_IMAGE_FILE(photo_filename, 'JPG', 'key_block.image');
IF NOT FORM_SUCCESS THEN
MESSAGE('This employee does not have a photo on file.');
END IF;
*:SYSTEM.MESSAGE_LEVEL := '0';*
END;
I have used the abv code to get image of an emp corresponding to the empno...but i got one small problem....suppose i enter 3021 i get the image with his personal details and now when i enter 3032 i get his personal details but the image doesnot changes(the image displayed is of 3031 instead of showing some thing blank) as he does have his image stored in the direcory
Edited by: Suhail Faraaz on Dec 14, 2009 10:17 PM

I have solved just had to make a small change and i got it so late in my head
DECLARE
jpeg_image_dir VARCHAR2(280) := 'C:\photos';
jpeg_image_dir2 VARCHAR2(280) := 'C:\photos\no';
photo_filename VARCHAR2(280);
BEGIN
:System.Message_Level := '25';
photo_filename := jpeg_image_dir||'\'||LOWER(:empa.empno)||'.jpg';
READ_IMAGE_FILE(photo_filename, 'JPG', 'empa.image');
IF NOT FORM_SUCCESS THEN
read_image_file('C:\photos\no\noimage.jpg','jpg','empa.image');
END IF;
END;

Similar Messages

  • Images not being displayed in metro apps

    OS: Windows 8.1 enterprise
    Images are not being displayed (a small cross mark shown on the left) when I open metro apps that I download from Store. The store as well doesn't show images. I am able to see images in some built in metro apps like travel and weather.
    What's the fix. I guess the company network is blocking it. What is the work around?
    Thanks.
    NOTE: This is WINDOWS 8.1 METRO UI issue. It doesn't have anything to do with VISIO. The only option that I had to choose when i selected Windows 8.1 is VISIO. This site appears to be broken and not user friendly.

    Hi,
    Which metro app did you download and occur the issue? As you post the question in Visio forum, did you use Visio 2013 preview? As far as I know, the version had been off the store after the official version released.
    If I misunderstand, please give me more information (Such as App name) or images about your question.
    Regards,
    George Zhao
    TechNet Community Support

  • Not being remove Blank space in Supplier Name

    Dear,
    Actully we have round more than 200 supplier having supplier name with space due to this client face problem especially in parameter while running reprots or sometime occur in oracle application, therefor i have developed this routine to remove space from the left & right side of suppliername, but not being update although some update get performed when package execute showig status sucessfull & error is blank as mentioned below.
    If any know about to update supplier name in Fron-End, right now we update supplier name but it's not wokrin could y please guide how can we upadate supplier name individulay so we can do it fron-end as per needed.
    DBMS_OUTPUT.PUT_LINE(' STATUS '||v_return_status||' ERROR '||v_error_msg);
    STATUS S ERROR
    declare
    v_return_status varchar2(100); --OUT NOCOPY VARCHAR2,
    v_error_msg varchar2(100); --OUT NOCOPY VARCHAR2);
    begin
    for i in (
    select s.*,par.jgzz_fiscal_code,par.sic_code,par.tax_reference,par.tax_name From ap_suppliers s,hz_parties par
    where ltrim(rtrim(s.vendor_name)) <> s.vendor_name
    and s.vendor_name = par.party_name
    and created_by_module = 'AP_SUPPLIERS_API'
    and vendor_name = 'ABC ' ) loop
    v_return_status := null;
    v_error_msg := null;
    POS_VENDOR_PUB_PKG.Update_Vendor
    p_vendor_id => i.vendor_id ,
    p_segment1 => i.segment1 ,
    p_vendor_name => ltrim(rtrim(i.vendor_name)),
    p_vendor_name_alt => i.vendor_name_alt ,
    p_summary_flag => i.summary_flag ,
    p_enabled_flag => i.enabled_flag ,
    p_segment2 => i.segment2 ,
    p_segment3 => i.segment3 ,
    p_segment4 => i.segment4 ,
    p_segment5 => i.segment5 ,
    p_employee_id => i.employee_id ,
    p_vendor_type_lookup_code => i.vendor_type_lookup_code ,
    p_customer_num => i.customer_num ,
    p_one_time_flag => i.one_time_flag ,
    p_parent_vendor_id => i.parent_vendor_id ,
    p_min_order_amount => i.min_order_amount ,
    p_terms_id => i.terms_id ,
    p_set_of_books_id => i.set_of_books_id ,
    p_always_take_disc_flag => i.always_take_disc_flag ,
    p_pay_date_basis_lookup_code => i.pay_date_basis_lookup_code ,
    p_pay_group_lookup_code => i.pay_group_lookup_code ,
    p_payment_priority => i.payment_priority ,
    p_invoice_currency_code => i.invoice_currency_code ,
    p_payment_currency_code => i.payment_currency_code ,
    p_invoice_amount_limit => i.invoice_amount_limit ,
    p_hold_all_payments_flag => i.hold_all_payments_flag ,
    p_hold_future_payments_flag => i.hold_future_payments_flag ,
    p_hold_reason => i.hold_reason ,
    p_type_1099 => i.type_1099 ,
    p_withhold_status_lookup_code => i.withholding_status_lookup_code ,
    p_withholding_start_date => i.withholding_start_date ,
    p_org_type_lookup_code => i.organization_type_lookup_code ,
    p_start_date_active => i.start_date_active ,
    p_end_date_active => i.end_date_active ,
    p_minority_group_lookup_code => i.minority_group_lookup_code ,
    p_women_owned_flag => i.women_owned_flag ,
    p_small_business_flag => i.small_business_flag ,
    p_hold_flag => i.hold_flag ,
    p_purchasing_hold_reason => i.purchasing_hold_reason ,
    p_hold_by => i.hold_by ,
    p_hold_date => i.hold_date ,
    p_terms_date_basis => i.terms_date_basis ,
    p_inspection_required_flag => i.inspection_required_flag ,
    p_receipt_required_flag => i.receipt_required_flag ,
    p_qty_rcv_tolerance => i.qty_rcv_tolerance ,
    p_qty_rcv_exception_code => i.qty_rcv_exception_code ,
    p_enforce_ship_to_loc_code => i.enforce_ship_to_location_code ,
    p_days_early_receipt_allowed => i.days_early_receipt_allowed ,
    p_days_late_receipt_allowed => i.days_late_receipt_allowed ,
    p_receipt_days_exception_code => i.receipt_days_exception_code ,
    p_receiving_routing_id => i.receiving_routing_id ,
    p_allow_substi_receipts_flag => i.allow_substitute_receipts_flag ,
    p_allow_unorder_receipts_flag => i.allow_unordered_receipts_flag ,
    p_hold_unmatched_invoices_flag => i.hold_unmatched_invoices_flag ,
    p_tax_verification_date => i.tax_verification_date ,
    p_name_control => i.name_control ,
    p_state_reportable_flag => i.state_reportable_flag ,
    p_federal_reportable_flag => i.federal_reportable_flag ,
    p_attribute_category => i.attribute_category ,
    p_attribute1 => i.attribute1 ,
    p_attribute2 => i.attribute2 ,
    p_attribute3 => i.attribute3 ,
    p_attribute4 => i.attribute4 ,
    p_attribute5 => i.attribute5 ,
    p_attribute6 => i.attribute6 ,
    p_attribute7 => i.attribute7 ,
    p_attribute8 => i.attribute8 ,
    p_attribute9 => i.attribute9 ,
    p_attribute10 => i.attribute10 ,
    p_attribute11 => i.attribute11 ,
    p_attribute12 => i.attribute12 ,
    p_attribute13 => i.attribute13 ,
    p_attribute14 => i.attribute14 ,
    p_attribute15 => i.attribute15 ,
    p_auto_calculate_interest_flag => i.auto_calculate_interest_flag ,
    p_validation_number => i.validation_number ,
    p_tax_reporting_name => i.tax_reporting_name ,
    p_check_digits => i.check_digits ,
    p_allow_awt_flag => i.allow_awt_flag ,
    p_awt_group_id => i.awt_group_id ,
    p_pay_awt_group_id => i.pay_awt_group_id ,
    p_awt_group_name => null ,
    p_pay_awt_group_name => NULL ,
    p_global_attribute1 => i.global_attribute1 ,
    p_global_attribute2 => i.global_attribute2 ,
    p_global_attribute3 => i.global_attribute3 ,
    p_global_attribute4 => i.global_attribute4 ,
    p_global_attribute5 => i.global_attribute5 ,
    p_global_attribute6 => i.global_attribute6 ,
    p_global_attribute7 => i.global_attribute7 ,
    p_global_attribute8 => i.global_attribute8 ,
    p_global_attribute9 => i.global_attribute9,
    p_global_attribute10 => i.global_attribute10 ,
    p_global_attribute11 => i.global_attribute11 ,
    p_global_attribute12 => i.global_attribute12 ,
    p_global_attribute13 => i.global_attribute13 ,
    p_global_attribute14 => i.global_attribute14 ,
    p_global_attribute15 => i.global_attribute15 ,
    p_global_attribute16 => i.global_attribute16 ,
    p_global_attribute17 => i.global_attribute17 ,
    p_global_attribute18 => i.global_attribute18 ,
    p_global_attribute19 => i.global_attribute19 ,
    p_global_attribute20 => i.global_attribute20 ,
    p_global_attribute_category => i.global_attribute_category ,
    p_bank_charge_bearer => i.bank_charge_bearer ,
    p_bank_branch_type => i.bank_branch_type,
    p_match_option => i.match_option ,
    p_create_debit_memo_flag => i.create_debit_memo_flag ,
    p_party_id => 2085 ,
    p_parent_party_id => i.parent_party_id ,
    p_jgzz_fiscal_code => i.jgzz_fiscal_code,
    p_sic_code => i.sic_code ,
    p_tax_reference => i.tax_reference,
    p_inventory_organization_id => NULL ,
    p_terms_name => NULL ,
    p_default_terms_id => NULL ,
    p_ni_number => NULL ,
    p_last_update_date => NULL ,
    x_return_status => v_return_status,
    x_error_msg => v_error_msg
    DBMS_OUTPUT.PUT_LINE(' STATU S '||v_return_status||' ERROR '||v_error_msg);
    end loop;
    end;
    Edited by: oracle0282 on Dec 24, 2011 3:36 AM
    Edited by: oracle0282 on Dec 25, 2011 9:51 PM

    Just a thought..
    How about creating a new supplier and then opt for Supplier Merge?
    Using supplier merge you may transfer all the open PO's and invoices of the old supplier to the new
    supplier. By using the supplier merge, the old supplier would be end date automatically by the
    system.
    P.S. I am NOT sure whether there exist a datafix to edit the supplier name.
    Regards,
    Srini

  • Images not being sent with forwarded emails

    Hi,
    When I forward an email sent to me that has attached images, those images are not being sent when I forward the email.
    Yes, I am being asked to "Include" the attachments, and I click the Include button.
    I see the images in my message to be forwarded just before I send it, but the recipient does not get the images.
    Any assistance would be appreciated.
    Thanks

    Posts: 26
    From: New England
    Registered: Oct 15, 2005
    Forwarding Mail fails to include pictures
    Posted: Nov 26, 2009 7:54 PM
    Reply Email
    Recently I've had a problem with my iPhone 3Gs when I forward an email that contains graphics. The graphic is fine on my iPhone but when it arrives the picture is missing. I am selecting 'include graphics'.
    I've re-booted - no change.
    I've restored from a backup - no change.
    I've restored without using the backup - no change (other than I lost a couple email accounts etc.)
    Anybody got any other suggestions?
    TIA
    Tim
    Intel iMac / MacBook Pro Mac OS X (10.6.2) 80 gig Classic iPod, 32 iPhone 3Gs
    wmdilson
    Posts: 3
    Registered: Oct 9, 2009
    Re: Forwarding Mail fails to include pictures
    Posted: Feb 14, 2010 9:31 AM in response to: Timothy Adams
    Reply Email
    I have been having the same issue since late September and been in touch with Apple support since. First they said they had no other reports on it so it was my phone. I started checking and found many other with the same issue. I called back and finally in November I was told they were aware of the issue and was working on it. The first week of January I called again and was told the update first week of February was going to correct this. I did the new software update and guest what....IT STILL DOESN'T WORK!!! It is now February 14th and I am on the phone once again for the same issue that was known back in October 2009. I am paying $30 for data plan that I can not utilize 100%. My question after being patient for 5 months is who is going to refund me a portion of my data plan? Apple or AT&T?? This is a software problem that really needs addressed. Apple just releases an iPAD and can't correct this email issue??
    iPHONE 3gs iPhone OS 3.1.3
    ernie goldstein
    Posts: 177
    Registered: Feb 1, 2005
    Re: Forwarding Mail fails to include pictures
    Posted: Feb 22, 2010 5:33 AM in response to: wmdilson
    Reply Email
    foward email
    Posted: Jan 29, 2010 10:14 PM
    Reply Email
    i have the 32 g 3gs iphone. i have no problem when i send pictures from iphone from my photo album. the problem i have is when i receive a email on my phone that has pictures not from someones photo album and i foward the email the people get the email but not the picture. all they get is ca blank square where the picture should be. i even fowarded to myself and the samething happens on my mac . I have called teck support & was told they are working on it. this is unacceptable. it should not take this long to fix this.
    imac Mac OS X (10.6.1)

  • ASA-5585-X 8.4(6)5 Idle connections are not being removed according to timeout settings

    Hi,
    Just a quick question if anybody has run into a bug where the ASAs "timeout" settings are not being applied to idle connections.
    It seems that our ASA running the software level 8.4(6)5 is not tearing down connections. This mainly seems to be a problem in one Security Context where there are around 300k UDP connections (related to VOIP phones) that are not being torn down. Idle timers on the connections are going as far as 700 hours. Common to all the UDP connections is also the fact that only 19 Bytes of data has been transmitted on the connection built on the firewall. I am not sure what the purpose of these UDP Connections is as both the source and destination port is a random high port.
    I was not able find any Bug ID which description would match the situation I am seeing. I did not see anything in the release notes of 8.4(7) or its interrim release either that would list thing kind of bug.
    - Jouni

    Hi Jouni,
    This caveat seems to be the closest match as 8.4.6 is the affected ASA code.
    CSCuh13899
    Symptoms:-
    Some connection may not removed even after reaching idle timeout.
    https://tools.cisco.com/bugsearch/bug/CSCuh13899/?reffering_site=dumpcr
    You can upgrade to the next stable ASA code as suggested in the referred document.
    HTH
    Regards,
    Dinesh Moudgil
    P.S. Please rate helpful posts.

  • Podcasts not being Removed from my Ipod

    I have several old podcasts that I have deleted from my ITUNES that for some reason, are not being deleted from my ipod...? The podcasts are not showing up in my itunes, so not sure how to clear them out from my ipod?? Thanks in advance for your help.

    The most likely culprit is a playlist that's getting synced to your iPod.
    The big change in this area in 7.7 is that all podcasts, even ones in playlists, appear in the iPod's Podcasts section. Before 7.7 the only episodes that appeared in the Podcasts section were ones that you synced in the Podcasts tab.
    The interesting thing is that this change affects only what shows up in the iPod's Podcasts section, it doesn't affect the files that are actually transferred to the iPod.
    To check this, find one of the episodes with the play count >= 1 in your iTunes library. Right click (or control click) the episode, and in the contextual menu go to Show In Playlist. See what playlists appear in that list. (Show In Playlist is right under Add To Playlist. If I'm wrong, Show In Playlist won't be there at all.)

  • Volatile User's not being removed

    We have a DLU policy that has volatile user implimented. I have been
    noticing that sometimes, the user doesn't get deleted and they have a
    folder in C:\documents and settings\ and their username still exists in
    the windows user management console, which causes problem with the user
    not being able to logon later on. It says "Account created by Novell
    Zenworks" in the description box besides the user name also.
    What causes this and is there anyway we can fix it so that volatile user
    works everytime?
    We are running Netware 6.5 servers and Zenworks 6.5.

    Tried uphclean ?, see TID 10096547
    Cheers Dave
    Dave Parkes [NSCS]
    Occasionally resident at http://support-forums.novell.com/

  • BUG - Images not being generated

    Something I just noticed...
    I'm using RoboHelp for System User Guides. For each screen in
    the System, I have a topic. In this topic is a screen shot of the
    screen. To save space on the topic I decided to try something new
    and link to the image through a "Custom-Sized Popup". Of course
    RoboHelp doesn't list images in the "Select Destination (file or
    URL)" -- even though it states files should be listed--- anyway, I
    have to manually link to it in the "Link to: " text box.... So
    that's fine... I can go into the Image Properties, Used In tab, and
    it lists the page it's linked from.
    Everything
    seems to be in order.
    I try and test out my newly created link. I generate the
    WebHelp output of the project and load the topic. I click on the
    link and imagine my shock and dismay when I find -- what's this --
    a 404 ?! What's more, all images I've linked to this way are
    not included in the output!
    It seems that RoboHelp, in it's infinite wisdom, decides that
    since this image isn't being directly linked to from any topic, it
    will save space and not create it in the output..... The quick and
    easy workaround is to create a topic which includes all the images.
    With this topic created, the images will be created in the output
    and the image link will work.
    I thought this post might come in handy for someone who gets
    stuck with the same problem
    Adios
    -Tyler Waters
    Idea for future release of RoboHelp:
    - Include images in the "Select Destination".... or at least
    remove "file or" from the label as files are not listed.
    - Include images in the output if they are linked to
    anywhere in the project.

    Colleagues:
    I've found a method for RH to get you halfway there.
    You can import an image as a baggage file and find it in the
    hyperlink dialog (link to file, navigate to the imported image).
    This is a lot faster than
    1. Creating a new topic (name, properties, etc.)
    2. Deleting the boilerplate
    3. Inserting an image.
    Still, RH won't self-size or let you self-size the popup
    window.
    For this you need to insert some Javascript code into the
    HREF string. You can do this either inside RH Truecode or in the
    output files. Either way, you have to do it for every image you
    want to pop up in a custom window.
    So you're trading one chore for another.
    A couple of benefits, if you consider them so:
    An image in a popup window will shrink and expand (up to
    original size) when you resize the window. You can't resize an
    image in a topic popup.
    The javascript specifies window attributes. An image-only
    popup doesn't need menu, navigation, status and tool bars, just the
    corners that close and resize the window.
    If you are (or anyone else is) interested in trying this,
    please reply here and I'll post some suggested code.
    Regards,
    Harvey

  • Roles not being removed from CC5.2

    After we run a full sync for users and roles we are still finding roles in CC 5.2 that have been removed/deleted from the SAP backend systems.

    HI,
    Try with a new job and for being on the safer side select all of the choices for full Sync - i.e profile, role and users. Also, select the relevant options for your system for the Batch Risk Analysis and the Management Reports too.
    Sometimes it is a common problem that Management reports show data for a role to be in Risk, which does not even exist because we did not check this option of Management reports while running the BG job.
    This might take a bit of longer time but will be accurate.
    Regards,
    Hersh.

  • Log files not being removed.

    Hello,
    I've upgraded an application from BerkeleyDB 5.1.25 to 5.3.21, and after that, log files are no more automatically removed. This is the only change in the application. It's an application written in C.
    The environment of the application is created with the flag DB_LOG_AUTO_REMOVE
    dbenv->log_set_config(dbenv, DB_LOG_AUTO_REMOVE, TRUE).
    The application has a thread to periodically checkpoint the data
    dbenv->txn_checkpoint(dbenv, 0, 0, 0)
    So far, so good, with version 5.1.25, this was enough to remove unused log files (I don't need to be able to do catastrophic recovery). But this doesn't work anymore with version 5.3.21.
    I I run db_archive (no options), it shows nothing, suggesting that all log files are still needed. But if I run db_hot_backup on the database, all but the last logfiles are removed (on the backup) as wanted.
    Rem : Usually, I don't want to run db_archive or any external tool, to remove unused log files. I hope what is inside the application is enough to remove unused log files.
    Is this something known, something changed or can you suggest me something to look for ?
    Thanks for your help
    José-Marcio
    Edited by: user564597 on Mar 24, 2013 6:35 PM
    Edited by: user564597 on Mar 24, 2013 6:38 PM
    Edited by: user564597 on Mar 25, 2013 8:57 AM

    thank you for giving us a test program. This helped tremendously to fully understand what you are doing. In 5.3 we fixed a bug dealing with the way log files are archived in an HA environment. What you are running into is the consequences of that bug fix. In the test program you are using DB_INIT_REP. This is the key to use that you want an HA environment. With HA, there is a master and some number of read only clients. By default we treat the initiating database as the master. This is what is happening in our case. In an HA (replicated) environment, we cannot archive log files until we can be assured that the clients have applied the contents of that log file. Our belief is that you are not really running in an HA environment and you do not need the DB_INIT_REP flag. In our initial testing where we said it worked for us, this was because we did not use the DB_INIT_REP flag, as there was no mention of replication being needed in the post.
    Recommendation: Please remove the use of the DB_INIT_REP flag or properly set up an HA environment (details in our docs).
    thanks
    mike

  • PDF.JS is no longer compatible with Firefox 35 & above. Why is it not being removed?

    Noticed that PDF Viewer PDF.JS is not compatible with Firefox version 35 & above.
    Then why is it not removed?
    Vin

    PDF.JS is now built into Firefox. You can remove this addon

  • Image not being opened in Photoshop cc 2014 from Lightroom

    I am using the latest lightroom and photoshop.  When I go to an image in lightroom and right click, select edit in Photoshop cc 2014, it opens Photoshop straight away but it does not pass the image along... Any suggestions?

    I've tried everything I can think of to no avail.  It takes several minutes now to load an image from Lightroom into PS CC 2014.  PS CC 2014 is already open.  I just noticed a pattern.  If I edit a file (TIFF) format that has already been edited in PS and saved back to Lightroom, it loads very quickly.  However, if I am trying to process a RAW file, that is when I notice a significant lag time.furth
    SUCCESS!!!  Upon further investigation and seeing issues from other members regarding RAW cache issues I decided to move my RAW cache file path in LR to a different drive.  That seemed to fix the last issue.  I think the drive I had selected is going bad.  So the reinstall fixed my integration issues between LR and PS CC 2014 (thanks to everybody who suggested that) and changing my RAW cache file path seems to have fixed the last of my performance issues.  Now to reinstall my plugins and get back to editing my clients' images!

  • ((  BLOB IMAGE  *NOT*  being saved !  ))

    Hello,
    I am new to APEX.
    I am working with the SAMPLE APPLICATION
    that comes with the free APEX.ORACLE.COM
    account.
    I am creating 2 pages similar to the
    PRODUCTS report and the
    PRODUCTS form.
    (Page 3 and PAGE 6)
    I am creating my own table
    and my own pages.
    I created my own table---
    similar to the
    DEMO_PRODUCT_INFO
    table--which has all the PRODUCT
    information in it.
    This table looks like this:
    http://mankindwins.com/__7700-2900-APEX-GLOBAL-201/850-500-SCREENSHOTS-FOR-POSTS-205/DEMO_PRODUCT_INFO__TABLE.gif
    I used the APEX wizard to create a REPORT
    on a table with a FORM.
    I then replaced the source code wide
    code similar to this:
    select p.product_id,
    p.product_name,
    p.product_description,
    p.category,
    p.product_avail,
    p.list_price,
    p.product_id image
    from demo_product_info p
    That worked fine.
    I then went into the
         BLOB Download Format Mask
    and I defined it to be something like this:
    IMAGE:DEMO_PRODUCT_INFO:PRODUCT_IMAGE:PRODUCT_ID::MIMETYPE:FILENAME:IMAGE_LAST_UPDATE::inline:Download
    This works fine.
    It shows the images.
    The problem is this:
    When I try to create a NEW PRODUCT
    the browse button is there,
    I CAN upload a new image.
    But then, when I hit the button
    to CREATE the NEW PRODUCT---
    it does **NOT SAVE** the
    IMAGE
    MIMETYPE
    FILENAME
    IMAGE_LAST_UPDATE
    All the other information is saved---
    ( product name, category, etc.)
    but NONE of the IMAGE INFO !
    My question:
    How do I get this information saved???
    The BROWSE WORKS---
    but the CREATE the NEW PRDOUCT
    is NOT SAVING ANY OF THE IMAGE
    INFO !
    Why not?
    Thanks for your help!
    I really appreciate it!
    David888
    .

    Oct 9, 2010
    Hello,
    I found the answer!
    I looked in the SAMPLE APPLICATION
    PAGE 6
    P6_PRODUCT_IMAGE
    I looked at SETTINGS.
    I put in the settings for the
    blob image.
    That made it work!
    The values were saved!
    YAY!
    David888

  • Images Not Being Saved as 16-bit

    Hello,
    We are using a Basler acA2000-340km camera.  I am able to capture frames in 10-bit and 12-bit pixel bit depth successfully.  However when I try to save those frames to disk they are only being saved in 8-bit format.  I tried using both .tif and .png images.  I am using the imgSessionSaveBufferEx() function to save the image.
    I noticed in MAX 10-bit and 12-bit acquired frames are correctly being saved as 16-bit images.  What am I missing here?
    Thank you.

    Hello Amit,
    Yes the image was acquired in 10-bit and stored in a 16-bit buffer.  I tried both TIF and PNG formats.  It looks like the problem is that NI needs to be specifically told that the image is 16-bit.  I am hoping that I don't need to create customized camera files just to set the bit depth.  I was hoping I could do it through one of the attributes.
    Are you coding in C++?  How are you indicating that you have 16-bit images?

  • Snow Leopard client for NetRestore image not being recognized in Mountain Lion Server

    I target firewired a MacBook Pro running Snow Leopard and ran System Imaging Utility and the machine does not show up as an option. Does Mountain Lion Server support Snow Leopard NetRestore images or am I doing something wrong?

    I'm actually trying to figure that out as well. We have 10.5, 10.6, 10.7, and 10.8 Images we wanted to put together for our netrestore images on our server, but can only do 10.8 images currently.
    We also have the AppleCare Helpdesk diagnostic kit which includes hardware tests, we were only able to get the newer mid-2012 and late-2012 Diagnostic utilities to netboot but none of the older ones.
    So do we need a server running the older OS to get these or is there a better alternative? i mean really shouldnt be a problem considering theyre running inside of an image and dont rely heavily on the server resources other than to say "Yep, goto this file/directory".
    I'd like to know more as well....

Maybe you are looking for

  • Welcome to the Technologies for Small and Medium Businesses Discussion

    Welcome to the Cisco Networking Professionals Connection Small and Medium Business Forum. This conversation will provide you the opportunity to discuss Small and Medium Business technology issues. We encourage everyone to share their knowledge and st

  • Can you please help me change the name of my device in iPhoto?

    I am trying to find out a way to change my new sony dsc-h70 camera from "no name" to it's proper name in iphoto. I've googled it, but cannot find any information other than you can change the name in Finder. I cannot figure out how to do this and hav

  • Windows 7 64bit on MacPro (2008) Freezes randomly - audio in skype.

    MacPro 2008 - 2x8800GT. 4 hard drives 10.6.2 Windows 7 (seperate Drive) I am having these problems - I have noticed similar problem thoughout the forum and the web but not exactly the same and wondering if anyone has any ideas. I initially thought it

  • Transaction Key PRD or BSX

    Hello SAP Guru    I did MIRO and there is a price vairance of $10, But insted of posting happen to PRD account its happening to BSX , I checked all IMJJ OBYC but not be able to fingure out. Can anybody please help.

  • How do I reregister a previously owned ipad

    I bought an ipad from someone in Afghanistan while deployed. I want to register it under my infoe so I can fully use it with my macbook , ipod and iphone. Any ideas?