[CS2 AS] Export as Jpeg... image missing in the output.

Hi,
I'm using alot the export as jpeg feature as a validation helper while doing batch processing (for quality output, i have used export as pdf and rasterisation in photoshop... require more processing, but it give more reliable output).
So with the base export, i'm having a odd problem where on other machine the some images are not exported appropriately (some appear with a white strippe and other completely blank).
I have not found documentation on this but i'm pretty sure that the export is done from a low-res preview, so i suspect that that my script processing make the export before indesign has completed some document display refresh.
I tought that i could use a arbitrary delay, but i find this solution quite inconvenient as it make the process slower and not completely deterministic.
Is there a equivalent call to "recompose" that would let me be sure to call the export when the display refresh of the document is done? (if i remember well, i have tried forcing the document quality display to maximum).
Thanks for any ideas! :)
Eric

On 5/2/09 6:22 AM, "EricGagnon" <[email protected]> wrote:<br /><br />>  Thanks for any ideas! :)<br /><br />Are you sure you're using the most recent version of CS2? And are you sure<br />all the links are present and up to date?<br /><br />-- <br />Shane Stanley <[email protected]><br />AppleScript Pro Florida, April 2009 <a href=http://scriptingmatters.com/aspro>

Similar Messages

  • After editing camera raw and export as jpeg,image becomes overexposed when view on light room..please advise.

    need some help here. don't know if i can describe this accurately.
    i was using lightroom previously. edit my raw file and then export in jpeg. everything appear normal as what i wanted.
    recently i got cs4 and started using bridge. now after i edit my photo in lightroom and export,the view of the jpeg file appears overexpose(exposure was increase) and when view on adobe bridge same problem. but if i open photoshop and use my workspace colour setting everything is ok. when i see my picture on iphoto it is normal as per i have edited. i just don't know what setting i have touch that cause my viewing of edited photo on lightroom and bridge goes overexpose. on bridge,thumbnail ok but preview bad...
    for the record: i just install CS4 and snow leopard recently. before this i have no problems with LR. I'm also not sure if i have accidentally change any settings.
    i shoot with a 5D mark 2 and use the raw file for edit.
    will appreciate any advise. Thanks

    grjacek wrote:
    Is it possibe to return to a RAW image and edit it once I've exported it to another location as jpeg?
    Yes
    I've edited and exported an image to a different folder on my desktop. I've realised I still need to do some work on it
    but when I try and open it again in Lightroom ( I see it in Library)  I get a mesaage saying file not found...Please help
    We're going to need a lot more details aobut exactly (EXACTLY) the steps you follow after you do the export, because normally I would say this is one of the easiest things possible in Lightroom. Are any files moved or renamed or disks unplugged in between the time of export and the time when you try to edit again?

  • Export for excel - images missing

    Hello, I built a long list with images and text cells in "nummbers". (A museums exhibit list.) Now I have to export it as an excel file, because my colleagues do not use "numbers" but have to add some informations. Unfortunately all images are missing in the exported file! What can I do?
    Thanx, Vera

    Hi VeraF72,
    Welcome to Number '08 discussions.
    By performing the following simple test gave me the answer to your question. Here's what I did:
    1. Created a Numbers worksheet putting a picture into a text box.
    2. Put a picture into a cell.
    3. Export as Excel I received the following message: Couldn't export image fills because Excel doesn't support them.
    Interestingly the picture within the Text box came across as it should.
    These Discussions are enduser helping enduser, not Apple employees answering questions. Apple provides these discussion forums for endusers however, Apple neither monitors nor engages in discussions. Enduser such as yourself when they have extra time answer questions.
    Again, welcome to Numbers '08 Discussions, have fun here.
    Cordially,
    RicD

  • How to export a transparent image  background for the web

    Hi Everyone
    I have made a mock up webpage in adobe fireworks 5. I am  now in the process of using the slice tool to cut up the seperate parts and export them to dreamwever.
    My question is this: how do i slice the images in such a way that the background is transparent .
    Also,  when exporting the image that i have just made trasparent,  what do i need to do to expot it as a transparent background.
    warm regards
    Andreea

    When you're ready to transfer your Fireworks layout to DW select FILE > Image Preview. In Options select Format PNG8 and beneath the color grid change the No Transparency dropdown to Alpha Transparency.
    Click the Export button, name your file, choose the destination location, and in the dropdowns select Export > HTML and Images, HTML > Export HTML File, Slices > Export Slices, Pages > All Pages. (Also some choices may be handy for you in the Options button including Background Image for the exported file.)
    PNG can be used, just as JPG, TIFF, PICT, BMP and GIF, all of which are in your Options > Format dropdown list.
    Generally JPG is better for files that have gradients, GIF for simple images and text, but they don't do transparency so the larger PNG file is necessary for that.

  • Export an image from flash, the output color not same as original from flash

    i try to create my logo from flash
    i use export function in gif format.
    the output color is not same as what i saw at flash.
    may i know why? below is the screenshot.
    flash
    output

    hi
    i have export in png. but it have a black part at the background.
    do you have idea?

  • Column headings are missing in the output for ALV?

    Hi all,
    i have coded a small report in ALV mode. i am getting the data but the column headings are missing.
    iam not getting the column headings in the output. it is coming as blank. Could you all please help me out in this?
    below is the code of my program:
                     Includes                                            *
    *---Standard header and footer routines
    INCLUDE zsrepthd.
    *--- ALV Routines
    INCLUDE zvsdi_alv_routines_ver3.
    *--- Authorization Check
    INCLUDE z_selection_auth_check.
                     Types Declarations                                  *
    tables : ekpo.
                     Types Declarations                                  *
    TYPES: BEGIN OF ty_ekpo,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_ekpo.
    *-Output field name
    TYPES: BEGIN OF ty_output,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF ty_output.
    *-Output field name
    TYPES: BEGIN OF ty_fields,
            fname(60) TYPE c,
           END OF ty_fields.
                     Internal Table Declarations                         *
    DATA:it_ekpo TYPE STANDARD TABLE OF ty_ekpo,
    *--- Alv parameters
        it_out_alvp TYPE typ_alv_form_params, "for alv parameters
    *-Field catalog  for ALV display
        it_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    *-Field names for Excel column headings
    it_ekpo_fields TYPE STANDARD TABLE OF ty_fields WITH HEADER LINE.
    **--To store output for Principial Pegging data
    DATA: BEGIN OF it_output occurs 0,
            EBELN(18) TYPE C,
            EBELP(20) TYPE C,
            MATNR(18) TYPE C,
            WERKS(11) TYPE C,
          END OF it_output.
    **--To store output for 2nd
    DATA: BEGIN OF it_output1 occurs 0,
            text(2000),
           END OF it_output1.
                     Data Declarations                                   *
    data: v_ebeln TYPE ekpo-ebeln,
          v_ebelp TYPE ekpo-ebelp,
          v_matnr TYPE ekpo-matnr,
          v_werks TYPE ekpo-werks.
                     Constants Declarations                              *
    CONSTANTS:
         c_0    TYPE i     VALUE  0,
         c_x    TYPE char1 VALUE  'X',
         c_i    TYPE char1 VALUE  'I',
         c_eq   TYPE char2 VALUE  'EQ',
         c_ekpo  TYPE char4 VALUE 'EKPO',
         c_hyfn  TYPE char1 VALUE '-'.
                     Work Area Declarations                              *
    DATA: x_output_ekpo type ty_output,
          x_ekpo type ty_ekpo.
                     Selection Screen                                    *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-f01.
    SELECT-OPTIONS:
          s_ebeln FOR v_ebeln OBLIGATORY,
          s_ebelp FOR v_ebelp,
          s_matnr FOR v_matnr,
          s_werks FOR v_werks.
    SELECTION-SCREEN END OF BLOCK b1.
                     At Selection Screen                                 *
    AT SELECTION-SCREEN.
                     Start-of-Selection                                  *
    START-OF-SELECTION.
    *--- Check Authorizations for Selection-screen
      PERFORM  z_selection_auth_check.
    *--- Fetch Purchasing Document Item data
      PERFORM  fetch_status_pp.
                     End-of-Selection                                    *
    END-OF-SELECTION.
    **-- Download data to final internal table.
      PERFORM data_output.
      IF NOT it_output[] IS INITIAL.
    *--- Fill the structure for calling the ALV form
        PERFORM initialize_alv_params.
    **-- Display ALV Report
        PERFORM setup_and_display_alv_ver2
           USING
         it_out_alvp        "Parameter structure
         it_output[]        "Internal Data table(header table)
         it_output[].       "Dummy table for Hierarchical ALV!!(item table)
        ENDIF.
      IF it_output[] IS INITIAL.
        MESSAGE i999(zi) WITH 'No data found for selection'(i02).
      ENDIF.
    *&      Form  FETCH_STATUS_PP
    Get data from ekpo table
    FORM FETCH_STATUS_PP .
    *-Fetch PP Data from ekpo table
      REFRESH it_ekpo.
      SELECT EBELN
             EBELP
             MATNR
             WERKS
             FROM ekpo
             INTO TABLE it_ekpo
             WHERE ebeln IN s_ebeln
               AND ebelp IN s_ebelp.
      IF sy-subrc = c_0.
        SORT it_ekpo BY ebeln ebelp.
      ENDIF.
    ENDFORM.                    " FETCH_STATUS_PP
    *&      Form  f_top_of_page
    *This is to write the top of page
    FORM top_of_page.
      DATA:  lt_list TYPE slis_t_listheader,
             lx_list TYPE slis_listheader.
    *--- Title name
      CLEAR lx_list.
      lx_list-typ  = 'S'.
      lx_list-key  = 'Title name'(t13).
      lx_list-info = sy-title.
      APPEND lx_list TO lt_list.
      IF NOT lt_list IS INITIAL.
        CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
          EXPORTING
            it_list_commentary = lt_list.
      ENDIF.
    ENDFORM.                    "top_of_page
    *&      Form  init_page_head
    Description : This subroutine initializes the fields in table BHDGD  *
                  for printing the report heading.                       *
    FORM init_page_head.
      bhdgd-line1  = 'SLA Status Report'(h04).
      bhdgd-line2  = sy-title.
      bhdgd-lines  = sy-linsz.
      bhdgd-fcpyrt = sy-uline.
      bhdgd-inifl  = '0'.
    ENDFORM.                    "init_page_head
    *&      Form  initialize_alv_params
    Description : Form to initialize ALV Params
    FORM initialize_alv_params.
      CONSTANTS: lc_alv_grid  TYPE char1 VALUE 'G',  "Grid
                 lc_u         TYPE char1 VALUE 'U'.
      MOVE 'IT_OUTPUT' TO   it_out_alvp-tablname.   "final table
      MOVE sy-repid    TO   it_out_alvp-repid.
      MOVE lc_alv_grid TO   it_out_alvp-alvtype.
      MOVE c_x         TO   it_out_alvp-bringdefaultvar.
      MOVE lc_u        TO   it_out_alvp-variantsavetype.
    ENDFORM.                    " initialize_alv_params
          FORM it_out_init_events                                       *
    -->this is form is to modify the events
    FORM it_out_init_events
          CHANGING
           alevnts TYPE slis_t_event.
      FIELD-SYMBOLS <alevnt> TYPE slis_alv_event.
      LOOP AT alevnts ASSIGNING <alevnt>.
        CASE <alevnt>-name.
          WHEN  slis_ev_top_of_page.
            MOVE 'TOP_OF_PAGE'  TO <alevnt>-form.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    "it_out_init_events
    *&      Form  DATA_OUTPUT
    Download data to final internal table
    FORM DATA_OUTPUT .
      loop at it_ekpo into x_ekpo.
        x_output_ekpo-ebeln = x_ekpo-ebeln.
        x_output_ekpo-ebelp = x_ekpo-ebelp.
        x_output_ekpo-matnr = x_ekpo-matnr.
        x_output_ekpo-werks = x_ekpo-werks.
        append x_output_ekpo to it_output.
      endloop.
    ENDFORM.                    " DATA_OUTPUT
          FORM it_out_alv_fieldcat_before                               *
    -->  PT_FCAT                                                       *
    -->  ALVP                                                          *
    FORM it_out_alv_fieldcat_before  CHANGING
        pt_fcat TYPE slis_t_fieldcat_alv
        alvp TYPE typ_alv_form_params.
      DATA: lx_fcat TYPE slis_fieldcat_alv.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELN'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_m      = 'Purchasing Doc No'(018).
      lx_fcat-seltext_s      = 'Purchasing Doc No'(018).
      lx_fcat-reptext_ddic   = 'Purchasing Doc No'(018).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'EBELP'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_m      = 'Item No Purchasing Doc'(020).
      lx_fcat-seltext_s      = 'Item No Purchasing Doc'(020).
      lx_fcat-reptext_ddic   = 'Item No Purchasing Doc'(020).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'MATNR'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Material'(010).
      lx_fcat-seltext_m      = 'Material'(010).
      lx_fcat-seltext_s      = 'Material'(010).
      lx_fcat-reptext_ddic   = 'Material'(010).
      APPEND lx_fcat TO pt_fcat.
      CLEAR lx_fcat.
      lx_fcat-tabname        = 'IT_OUTPUT'.
      lx_fcat-fieldname      = 'WERKS'.
      lx_fcat-col_pos        = '1'.
      lx_fcat-ddictxt        = 'M'.
      lx_fcat-seltext_l      = 'Supply plant'(013).
      lx_fcat-seltext_m      = 'Supply plant'(013).
      lx_fcat-seltext_s      = 'Supply plant'(013).
      lx_fcat-reptext_ddic   = 'Supply plant'(013).
      APPEND lx_fcat TO pt_fcat.
    ENDFORM.                    " it_out_alv_fieldcat_before.
    Regards,
    Shalini
    Edited by: shalini reddy on Oct 7, 2008 5:08 PM

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • Avoid Image Printing on the output

    Hi all,
    I am printing an image on my selection screen, but I am not able to avoid the same printing on the Output.
    This is my code, please check the code and tell me where I am going wrong.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETER : pr_path LIKE ibipparms-path.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_path.
    PERFORM f002-f4_filename CHANGING pr_path.
    AT SELECTION-SCREEN OUTPUT.
    PERFORM show_pic.
    REFRESH query_table.
    START-OF-SELECTION.
    REFRESH query_table.
    PERFORM f003-upload_data .
    FORM f002-f4_filename CHANGING p_pr_path.
    ENDFORM. "f002-f4_filename
    FORM f003-upload_data .
    ENDFORM. "f003-upload_data
    FORM show_pic.
    DATA: repid LIKE sy-repid.
    repid = sy-repid.
    CREATE OBJECT picture_control_1 EXPORTING parent = docking.
    CHECK sy-subrc = 0.
    CALL METHOD picture_control_1->set_3d_border
    EXPORTING
    border = 5.
    CALL METHOD picture_control_1->set_display_mode
    EXPORTING
    display_mode = cl_gui_picture=>display_mode_stretch.
    CALL METHOD picture_control_1->set_position
    EXPORTING
    height = 225
    left = 005
    top = 048
    width = 947.
    break-point.
    IF url IS INITIAL.
    REFRESH query_table.
    query_table-name = '_OBJECT_ID'.
    skip 5.
    query_table-value = 'ZAUROSYS1'.
    APPEND query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
    TABLES
    query_string = query_table
    html = html_table
    mime = pic_data
    CHANGING
    return_code = return_code
    content_type = content_type
    content_length = content_length
    EXCEPTIONS
    object_not_found = 1
    parameter_not_found = 2
    OTHERS = 3.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    type = 'image'
    subtype = cndp_sap_tab_unknown
    size = pic_size
    lifetime = cndp_lifetime_transaction
    TABLES
    data = pic_data
    CHANGING
    url = url
    EXCEPTIONS
    OTHERS = 1.
    ENDIF.
    CALL METHOD picture_control_1->load_picture_from_url
    EXPORTING
    url = url.
    endform.

    solved by self

  • Bluetooth Speaker sometimes missing in the output list

    Hi all !
    My computer runs on the latest version of Gnome Shell, with pulseaudio as the sound manager.
    I have a bluetooth speaker (Creative D100); I can pair it with my computer without any problem, but *sometimes* after having paired it successfully, the speaker doesn't appear in the list of the output device of the Pulseaudio panel. I need to either un-pair the speaker, restart Gnome-Shell, or sometimes even reboot my computer.
    It doesn't occur every day, but when it does, that's pretty annoying.
    I've searched on the net, but so far I could only find people who simply had a library missing or so, which doesn't seem to be my current problem =/
    Does this sound familiar to somebody ?

    Hi,
    The heading are in the table pt_fcat - you don't seem to be passing that in form....
    PERFORM setup_and_display_alv_ver2
    USING
    it_out_alvp "Parameter structure
    it_output[] "Internal Data table(header table)
    it_output[]. "Dummy table for Hierarchical ALV!!(item table)
    which I guessing in in one of the includes?
    Saying that the extract pof code does not show where you are calling form it_out_alv_fieldcat_before ...which populates the headings...
    Regards
    Stu

  • House number is missing in the output

    Dear all,
    Though House number (HOUSE_NUM1) is been maintained in the CMR for a set of customers, but in the return output type house number is not printing. can any one tell me what will be the reason for this
    thanks,
    satish

    Please reach out to your ABAPer.
    Something would be missing in the smartform / SAP Script code for the output.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • Combo Box missing in the output

    Dear All,
    I cannot find the reason why combo box is not coming in the output. All the other components are coming. Please help me since i am a beginner in java. Please.
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    class update
         public static void main(String[] args)
                   String course[] = {"BCA","MCA","PPC","CIC"};
                   JFrame frame= new JFrame("Update");
                   JPanel panel1= new JPanel();
                   JLabel label1= new JLabel("Client Machine:");
                   JLabel label2= new JLabel("Server Path:");
                   JLabel label3= new JLabel("Client Path:");
                   JLabel label4= new JLabel("UPDATE");                                        
                   label1.setBounds(20,50,150,150);               
                   label1.setForeground(Color.black);
                   label1.setFont(new java.awt.Font("Arial",1,15));                    
                   label2.setBounds(20,80,150,150);               
                   label2.setForeground(Color.black);
                   label2.setFont(new java.awt.Font("Arial",1,15));                              
                   label3.setBounds(20,110,150,150);               
                   label3.setForeground(Color.black);
                   label3.setFont(new java.awt.Font("Arial",1,15));                              
                   label4.setBounds(200,20,150,50);          
                   label4.setForeground(Color.red);
                   label4.setFont(new java.awt.Font("Arial",1,30));                              
                   JComboBox combo= new JComboBox(course);
                   combo.setBackground(Color.gray);
                   combo.setForeground(Color.red);
                   combo.setEditable(true);          
                   panel1.setLayout(null);                                   
                   panel1.add(label1);
                   panel1.add(label2);               
                   panel1.add(label3);
                   panel1.add(label4);
                   panel1.add(combo);                    
                   frame.add(panel1);                    
                   frame.setSize(500,500);     
                   frame.setResizable(false);                                                                 
                   frame.setVisible(true);
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    rahulreigns123 wrote:
    Thanks for your valuable reply. I have tried using the layouts. But that was not a satisfactory output for me. I couldn't get the components in the right positions i need. Then you don't fully understand how to use them yet. That doesn't change the answer that you should learn how to use them and should use them for this program.

  • Automatically export to JPEG from RAW images

    RAW images are preferred form of shooting for many photographers. And, Lightroom is great at managing and developing these images. However, we increasingly use/view these images outside Lightroom and away from the PC where we do most of the development. For example, I use a DLNA server which shows off my entire image collection to big screen television (which can act as a DLNA client). The same DLNA server is used to send images to our smartphones (my wife loves to show all kid pictures anywhere she - without having to carry the pictures on the phone).
    Most other applications that use these images, do not work on RAW images and JPEG images must be exported manually from Lightroom. This becomes increasingly difficult to manage and keep track of while developing RAW images. How many RAW images need to be exported? How many images did I touch since the last time I exported them?
    Currently, I am using the following process to manage this:
    1. I created a smartlist which contains images that are edited after "a particular date".
    2.  I select all images in this smartlist, and use Lightroom3's export  function to export them all as JPEG, to the same folder as original.
    3. Once the export is completed, I modify the smartlist to change the "particular date" to today's date.
    I plan to repeat this procedure every so often (once a week or so).
    It would be great if Lightroom had a feature such that it always keeps "JPEGs exported" for all RAW images (with the latest development settings of course). This could be a process that could occur in the background or at a user-specified time/event (e.g. when one closes Lightroom). User should be able to specify where the exported JPEG images should be put to and with what name (I prefer in the same folder as RAW but other users may have other preferences). User should be able to select if this is only done for RAW images or also for JPEG and other formats (in which case, should the exported image override the original or not). The exported images should be (optionally) automatically included in the Lightroom catalogue and stacked with the original RAW image.
    Mainly, the entire process should be completely transparent to the user. A collection of JPEG images - corresponding to the latest development settings for the RAW images - should be always available.
    Osho

    I've heard many others raising the issue of an auto-jpeg feature - kinda like auto-write xmp, except auto-write jpeg.
    I agree this would be nice, obviously some sort of "stability" check would be needed so it isnt constantly writing jpegs as you edit. Lightroom employs a form of this already for the xmp - meaning it doesn't update xmp every brush stroke, but accumulates several strokes before updating, so its more efficient...
    If you could define multiple jpegs to keep - with the raws, or a separate tree - even better. That would obsolete all the tree output plugins and publishers.
    The publishing feature was intended to fill this need (albeit manual only), but it suffers from the inability to publish to original directory, and/or an external tree.
    I'd like to see a manual mode too, that accompanies a new "Done for now" function - so when you say "Done for now", it saves xmp, jpeg(s), snapshot, and optionally locks the file so unapproved changes can no longer happen to it. Then if you could define multiple "done for now" presets that include initiating publish service and exports, then the work-flow becomes: 1.import, 2.edit, 3.done for now - and thats it (maybe repeat 2 + 3 in the future). i.e. no more manually initiating the exports, publish services, snapshots, saving of xmp, ..., and whatever else you do when you're done.
    In the mean time, I may make some of this part of an up-n-coming "Sidekick" app + plugin combo when I get to it.
    Presently, I dont use publishing services, and I have ExportManager to consolidate exports (which includes TreeSync), so my workflow is: 1.import, 2.edit, 3.done for now (save xmp+snapshot, and lock via ChangeManager), 4. initiate consolidated exports...
    Rob

  • Imported JPEG images are too light

    Imported JPEG images appear lighter/brighter than the scanned image.
    How can I make JPEG images appear with the correct lightness/brightness so they look like the actual book or magazine from which they were scanned?
    Using Apple's "Preview" to look at a JPEG- everything looks fine. But when a JPEG is imported into Motion 4.0.3 (and/or Final Cut Pro 7.0.3), the image appears lighter/brighter, as if it's washed out. To see if this is just the way a JPEG appears in Motion and not how the finished product will be, I exported a Motion project with one or more JPEGs as a QuickTime movie. The QuickTime movie does not bring the JPEG image(s) back to the "correct" lightness/brightness as the scanned image.
    Settings used:
    JPEG image, using a CanoScan LiDE 210 scanner, Color Space: RGB, Color Profile: sRGB IEC61966-2.1, current Monitor Gamma setting on the scanner is set to 1.80
    How can I make JPEG images appear in Motion (and Final Cut Pro) so they are true to the source from which they were scanned?

    Does it do the same thing when you use TIFFs?
    Patrick

  • Converting a binary string into a JPEG image in Crystal Reports 2008

    Hi Gang
    Iu2019m having problems converting a binary string into an image in Crystal Reports 2008
    I have JPEG images stored in ECC.  ECC stores the data in binary format.
    Iu2019m using the ECC function module SKWF_PHIO_CONTENT_ACCESS_GET to retrieve the data.  This function module has an export table, FILE_CONTENT_BINARY, which returns several lines of data.  Each line contains a maximum of 1,024 characters.
    When I drop the T_ FILE_CONTENT_BINARY.LINE field into my Crystal Report detail section, I wind up with a report that displays all the lines in FILE_CONTENT_BINARY table.  (in my case, 19 lines are displayed.)
    I created a formula to collect all the data into a single string.
    whileprintingrecords;
    stringvar data:= data & {SKWF_PHIO_CONTENT_ACCESS_GET.T_FILE_CONTENT_BINARY.LINE}
    I added the formula to the detail section and itu2019s doing a great job collecting the data.
    I then inserted a picture object in the report footer, opened the format editor, navigated to the u201Cpictureu201D tab, and inserted a formula for the u201Cgraphics locationu201D.
    whileprintingrecords;
    stringvar data:=data;
    data
    My clever idea turned out to be a disappointment . . . . my picture object is blank.
    Does anyone have a solution for converting a binary string into a JPEG image?

    Save the JPEG in a format CR supports. Refer to the help file for the file types.

  • Does Export Version reduces image quality?

    Hi,
    I got smaller file size when I "export version" at "original size". My master was jpeg of 5.1MB and I exported in jpeg format, I got 3.6MB. If I "export master", I do get 5.1MB. What does Aperture do to the jpeg image that reduces the file size?
    Then I played around with "image quality", which is 10 by default. If I set it to 11, I got a file of 4.1 MB, still smaller than the original 5.1MB. Set it to 12 I got a file of 10.4MB. I am kind of confused. I guess the "image quality" relates to degree of jpeg compression, and a 12 setting means that Aperture compresses the jpeg image at a lower compression ratio than my camera? Does Aperture uncompress jpeg image and re-compress it when "export version"?
    The bottom line is, how do I preserve image quality after adjustments? In other words, I would like to export at the same image quality as my original photo, or as close as possible (I assume Aperture reduces jpeg image quality a bit every time I apply adjustments to the image via export). Thanks much for your time.

    Wanderzhuanyou wrote:
    2) When I make adjustments in Aperture I actually work on the image Aperture produces out of the master file - which should be about 73MB in my computer memory as the size of the image is 2848 x 4272 and Aperture works in 16 bit.
    Internally, Core Image (which Aperture uses) actually works in 32-bit, but your basic idea is right.
    3) When I export, Apertures compresses this 73MB image (assume adjustments don't make much difference to the image size) to a jpeg file.
    First the image will be reduced to the bit depth of your export preset. Image adjustments will make quite a difference to the final file size because areas of high definition detail and a large tonal range will both increase the file size for a given compression setting. So any sharpening, for example, will increase the file size.
    As a test, export an image with no sharpening applied, then add some edge sharpening and export it again. You should see a noticeable difference in file sizes.
    Correct?
    Pretty much.
    Ian

  • Export anamorphic JPEG

    Hello,
    Another problem, i would like to know how to export anamorphic JPEG images?
    When you export JPEG in AE, pixel aspect ratio  have automatically the value 1, i would like to export one HDV frame 1440*1080 with a pixel aspect ratio of 1.33, is that possible?
    Even if i set an output module template, i can't success?
    Thanks in advance,
    Fred

    I can't see any preset resize settings in the output module that would give you that, but you could create a new output module template with the correct resize and have the script apply that.
    If the problem is that this still doesn't tag the output with the correct aspect ratio, maybe you could have the script put the output comp in another comp with the correct pixel aspect and render it through that.

Maybe you are looking for