[AS CS3] Export JPEG options, setting, export selection

Hi all,
I am having trouble getting a JPEG export of a selected group of items to adhere to the export options I'm setting. I swear I've done the same thing with PDF export prefs and it works OK.
I need to export a group that is selected, not the whole page, using the options I specify. Every time it's 72 dpi, and probably medium quality.
thanks a million
PS if the only way is to use javascript I will consider that, but Applescript is best for me.
tell application "Adobe InDesign CS3"
tell JPEG export preferences
set resolution to 600
set JPEG Quality to maximum
set JPEG Rendering style to baseline encoding
end tell
set myJPEGPrefs to JPEG export preferences
export selection format JPG to "PREPCTRL-10:Users:chris.paveglio:Desktop:test.jpg"
end tell

>You can only export whole pages; exporting selections has been broken since
CS2.
I just ran into this, and I'm a bit confused.
In my testing, it appears that a page item cannot be exported to most of the export formats in that trying to do so will result in the entire page (or possibly it's the spread) being exported. However, I
am able to export a JPEG of a single page item, though setting the JPEG Export Preferences of the application seems to have no effect on the rendered JPEG which is always at 72 ppi and of a quality less than maximum as reported by the OP.
Are these two separate bugs? Is there no way to get the JPEG preferences to "stick"?

Similar Messages

  • EXPORT 시 QUERY OPTION에 대한 사용 예(ORACLE 8I 이상)

    제품 : ORACLE SERVER
    작성날짜 : 2004-03-17
    EXPORT 시 QUERY OPTION에 대한 사용 예(ORACLE 8I 이상)
    ============================================
    PURPOSE
    ============
    oracle 8i에서 export 시 query option에 대한 사용 예
    8i에서 export의 query syntax 를 이용하여 table data의 한 부분만 exporting 이 가능
    - 8i 에서 select 문장의 where 절을 사용하는 것처럼 export 시에 부분적으로 table data 를 받아 낼수 있는 기능을 소개 한다.
    - Direct 옵션은 사용될 수 없다..
    - where 절에 해당하는 export utility는 query parameter 를 사용한다.
    UNIX syntax:
    - Example:
    1.SCOTT.Emp table의 ename 이 JAME과 비슷한 이름의 data 를 export ..
    exp scott/tiger query=\"where ename like \'JAME%\'\" tables=emp file=exp.dmp log=exp.log
    2. employee와 cust table에서 new york 주의 data 만 export ..
    exp scott/tiger query=\"where st=\'NY\'\" tables=(employee,cust) file=exp.dmp log=exp.log
    query 문장에서 UNIX reserved characters( ", ', ,< .. 등) 를 사용하는 경우에는 escape ('\') 을 반드시 사용해야 한다.
    예)query=\"where JOB = \'SALESMAN\' and salary \< 1600\"
    더 중요한 것은 command line에서 export option을 사용할때는 반드시 escape 이 있어야 하나
    parfile을 사용할때는 eacape이 불필요하다.
    예를 보면 .. p라는 이름의 file을 다음과 같이 생성
    tables=emp query="where job='SALESMAN'"
    parfile을 이용해서 export 를 실행해 보면
    [rmtdchp6]/apac/rdbms/64bit/app/oracle/product/9.2.0> exp scott/tiger parfile=p
    Export: Release 9.2.0.4.0 - Production on Wed Mar 17 00:12:34 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses KO16KSC5601 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 4 rows exported
    와 같이 정상 처리 됨을 알수 있다.
    만일 command line에서 위의 내용을 실행하게 되면 다음과 같이 error 를 만난다.
    exp scott/tiger tables=emp query="where job='SALESMAN'"
    LRM-00101: unknown parameter name 'job'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    command line에는 query 내에 single(')나 double quotes(") 를 사용한다면 반드시 double quotes(") 를 사용하여
    query 문을 묶어야 한다.그러나 query 내에서 single ('')나 double quotes(") 를 사용하지 않는다면 single quotes (')을 사용하여
    query 문을 수행할 수도 있다..
    다음 예를 보면..
    1>exp scott/tiger tables=emp query=\'where deptno=20\'
    Export: Release 9.2.0.4.0 - Production on Wed Mar 17 00:22:00 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Export done in US7ASCII character set and AL16UTF16 NCHAR character set
    server uses KO16KSC5601 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 4 rows exported
    2>exp scott/tiger tables=emp query=\'where job=\'SALESMAN\'\'
    LRM-00112: multiple values not allowed for parameter 'query'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    EXP-00000: Export terminated unsuccessfully
    즉.. 정리를 하자면
    command line에서 query 내에 '," 을사용하지 않는 다면 '나 " 으로 query option을 사용할수 있다
    query=\'where deptno = 20\'
    query=\"where deptno = 20\"
    query=\'where deptno \< 2\'
    (이 경우 single 이나 double quotes 을 둘다 사용할수 있다.)
    parfile을 사용하는 경우에는 다음과 같이 단순하게 사용이 가능하다.
    query='where deptno = 20'
    query="where deptno = 20"
    query='where deptno < 20'
    WINDOWS NT / 2000 와 NETWARE syntax:
    다음의 자료를 참조바란다.
    Example:
    EXP demo/demo tables=emp file=exp1.dmp query="""where deptno>30"""
    double quotes(") 를 둘러 싸는 경우에는 space 가있으면 안된다.
    parfile의 사용은 다음과 같이 하시면 됩니다.
    file=exp66.dmp
    query="where deptno > 20"
    tables=(emp)
    log=log66.txt
    userid=scott/tiger
    Explanation
    Windows NT or Win2000의 경우 command line에서는 3 double quotes 이 필요하고
    'PARFILE 을 사용하는 경우에는 double quotes(") 한번만 필요함
    Reference Documents
    Oracle8i Utilities guide
    Note:91864.1

  • ORACLE 8I EXPORT의 QUERY OPTION 기능

    제품 : ORACLE SERVER
    작성날짜 : 2000-09-19
    Oracle 8i EXPORT의 Query Option 기능
    ====================================
    Oracle 8i에서는 export 작업 수행 시 Query Option을 이용하여 테이블의
    부분적인 추출이 가능하다.
    SQL> select empno, ename, job, sal from emp order by job;
    EMPNO ENAME JOB SAL
    7788 SCOTT ANALYST 3000
    7902 FORD ANALYST 3000
    9999 홍길동 ANALYST 2000
    7369 SMITH CLERK 800
    7876 ADAMS CLERK 1100
    7934 MILLER CLERK 1300
    7900 JAMES CLERK 950
    7566 JONES MANAGER 2975
    7782 CLARK MANAGER 2450
    7698 BLAKE MANAGER 2850
    7839 KING PRESIDENT 5000
    7499 ALLEN SALESMAN 1600
    7654 MARTIN SALESMAN 1250
    7844 TURNER SALESMAN 1500
    7521 WARD SALESMAN 1250
    위와 같이 구성된 EMP 테이블에서 만일 'MANAGER'로 JOB을 가진 사원중 SAL
    컬럼이 2500이상인 레코드를 export하고 싶다면, 다음과 같이 수행하면 된다.
    % exp scott/tiger tables=emp query=\"where job=\'MANAGER\' and sal\>=2500\"
    Export: Release 8.1.5.0.1 - Production on Tue Sep 19 16:14:15 2000
    About to export specified tables via Conventional Path ...
    . . exporting table EMP 2 rows
    exported
    Export terminated successfully without warnings.
    한글 컬럼에 대해서도 동일한 where 조건에 지정이 가능하다.
    % exp scott/tiger tables=emp query=\"where ename like \'홍%\'\"
    V8.1.5 버젼에서 제공되는 Query 옵션의 특징:
    1. 테이블 레벨의 export 명령어에서만 가능하다.
    2. Direct 옵션과 함께 사용될 수 없다.
    3. Nested 테이블을 갖는 테이블에는 적용할 수 없다.
    4. Partition 테이블에 대한 export에도 적용가능하다.
    5. Import 명령에는 적용되지 않는다.

    Thanks Guys,
    I am still a bit lost though...
    It may be simply a matter of me finding Oracle 8i so I can do what I need to do.
    Where can I get Orcale 8i from? Does anybody have it? The oracle site only has a version back to 9.2 I queried with a employee from Oracle University here in Australia, and he suggested asking in the forums.
    Just so you know what I'm trying to do:
    Data Server:
    Running Aix with Oracle 7.14... actually could be 7.41 - I'll check today.
    This system will not be upgraded to any later version of Orcale, because systems are in place, and core systems at our other sites have to be the same. (my project is a local one)
    Web Server:
    Running XP profession with IIS and using ASP (active server pages)
    Currently running Oracle 10g, and ASP code connects to the local database on this machine via an ODBC connection.
    At the moment, I have scripts on the Aix server that dumps data from Oracle 7.x into a .csv file.
    Then, I have scripts that copy those csv files to the XP server, and they are imported to the local Oracle 10g database.
    To display this data on the website, I use ASP via the odbc connection to query the local database on the XP server.
    As said in my previous post, there must be an easier way to do this.
    I need a local database on the XP server too, and am thinking the best way is to downgrade to 8i.
    Can anybody tell me where I can get 8i to try this out? I have been trying to reasearch this for a while now without luck. Any help would be appreciated, and thanks for those who have replied so far.
    -Tom

  • How to set "embed icc Profile" option  to export document as JPEG

    Hi All,
    While exporting the document as jpeg, through File->Export, there is an option "Embed ICC Profile" as figure shows.
    How to set it if I am exporting the document through my program in which I rasterize the document and used 
    the sAIImage->AsJPEG(raster, jpegDataFilter, params);
    I didn't find any option in AIRasterizeSettings or AIImageOptJPEGParams to set this flag.
    plz anyone suggest me how to do so.
    Thanks,
    Rud.

    thanks for you through out help.
    I use the folowing code which executing properly,but there is no effect on JPEG whether the value of jpegparam.s.jpeg.embedICCProfile is 0 or 1.
    /////Start
    ASOptimizationSettings jpegparam;
    jpegparam.fileFormat = asffJPEG;
    jpegparam.s.jpeg.embedICCProfile = isICCProfileEmbeded;
    ASInt32 optID;
    optID = sAIOptSet->GetUniqueOptimizationSettingsID();
    error = sAIOptSet->SetOptimizationSettings(optID, &jpegparam); // after executing this line error = 0
    /////End
    I guess it would  work when we export document as jpeg through AIActionManagerSuite
    not with  rasterizing the layer's art and then exporting them as JPEG  using AsJPEG().
    thanks

  • Feature Request: Make a Setting Option for Export - Media - What to Render

    As I just changed after many years with Premiere Elements to Pro, I certainly find many things just anconversant.
    But there's one thing I really can't take: When I'm trying to render a project, there's a small selection list near the bottom of the "Export Media" window saying "export area". Here I can choose between "complete sequence", "work area", "sequence in/out" and "defined by user". This option jumps always back to "work area"!
    That's at least for me very unconveniant, because in 99+ % of my renderings, I need "complete sequence". Normally the software remembers the last used setting, but not in this case. I can imagine that one can fight about what's the best default setting: I Guess everyone is using Premiere differently. So in my opinion a predefined setting option would solve best for all: Just add one mor setting in the Presets section, maybe in "General" or make a new rubric "Export" or something. Just a place where everyone can predefine which setting for the export media area option he likes.
    No big deal, just one more presettings option!
    I hope I could make myself clear what I'm meaning
    Thanks in advance!

    Hi Lutzz,
    When I'm trying to render a project, there's a small selection list near the bottom of the "Export Media" window saying "export area". Here I can choose between "complete sequence", "work area", "sequence in/out" and "defined by user". This option jumps always back to "work area"!
    That's at least for me very unconveniant, because in 99+ % of my renderings, I need "complete sequence".
    You can create a feature request here: http://adobe.ly/feature_request
    Thanks,
    Kevin

  • My Images won't open in Photoshop CS5 when I click on Edit in Lightroom - even though this option has been selected?  To edit in Photoshop I have to export image from Lightroom then import into Photoshop.  I have other programmes such as NIK and if I wish

    My Images won't open in Photoshop CS5 when I click on Edit in Lightroom - even though this option has been selected?  To edit in Photoshop I have to export image from Lightroom then import into Photoshop.  I have other programmes such as NIK and if I wish to edit in these everything works fine.

    Same here. I've never had trouble with this function before.
    It opens the Photoshop application with all the menus/windows, but it never opens the actual image I chose to work on.
    I'm on a Mac, using OS X Yosemite, 10.10.1  Lightroom is version 5.7  Photoshop is CS5, version 12.0.4
    FWIW, I also can't automate>Photomerge ... . Makes me think Photoshop, not Lightroom, is all wacky. I tried dumping PS preferences

  • Why am I not able to export NEF files to Photoshop from Lightroom to edit. This is new. When I right click on an image, the export to PS option is not selectable.

    Why am I not able to export NEF files to Photoshop from Lightroom to edit. This is new. When I right click on an image, the export to PS option is not selectable. I've never had this happen before. I haven't used it for a few weeks, so maybe there's an update (Mac or otherwise) that's screwing things up? HELP!

    I have an Edit In - Photoshop option, but not an Export - Photoshop option.
    Obviously to have right-click Edit In to work, the photo you're right-clicking on needs to be selected.  I assume this is not the problem, and that the photo is selected.
    Mavericks 10.9.3 has a problem where the Users folder is hidden, and you need to update iTunes to fix it, but it's been a few weeks since this happened so hopefully you're up-to-date and the Users folder isn't hidden anymore.
    If you can't get things to work, I'd uninstall LR and uninstall Photoshop, then install Photoshop, and update it, then install LR and update it, as a way to get any wayward security or other OS-level things reset.

  • Exporting jpegs-- why do I get 72ppi when i set resolution at 240ppi ?

    Why does Lightroom export jpegs at 72ppi resolution-- when I clearly set it at 240ppi in the export window? It has done this for versions 1.0-1.2.
    For exporting psd or tiff-- everything works as planned. Anyone have a solution?
    Thanks.

    Do not click on the minimize metadata checkbox. The resolution is meaningless anyway, but if you want the field uncheck that box.

  • Need help setting export options

    I'm working on replacing our old RDC component with the new Java SDK.
    I purchased Crystal Reports 2008 and downloaded the SDK.  Now I'm trying to run a simple example exporting a report to word.  I've built it off of the other export examples I've seen on the site.  None of them seem to give me an up to date example of how to set export options though.
    Exporting seems to work when I export using this:
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) report.getPrintOutputController().export(ReportExportFormat.MSWord);
    But not when I do this:
    ExportOptions opt = new ExportOptions();
    opt.setExportFormatType(ReportExportFormat.MSWord);
    RTFWordExportFormatOptions myOptions = new RTFWordExportFormatOptions();
    opt.setFormatOptions(myOptions);
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) report.getPrintOutputController().export(opt);
    Is there something I'm missing?  I want to be able to explicitly set my export options - especially for other export formats like excel.

    Unfortunately I must still be doing something wrong.  The csv is exported but it comes back with gibberish characters in the file instead of what is in my Crystal.  PDF comes back fine but the other export formats (xls, doc, csv, etc.) all come back with gibberish characters.
    Here is an example of the csv export code I'm using::
    ExportOptions opt = new ExportOptions();
    CharacterSeparatedValuesExportFormatOptions csvOptions = new CharacterSeparatedValuesExportFormatOptions();
    csvOptions.setSeparator(",");
    csvOptions.setDelimiter("\"");
    opt.setExportFormatType(ReportExportFormat.characterSeparatedValues);
    opt.setFormatOptions(csvOptions);
    ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) report.getPrintOutputController().export(opt);
    I don't believe I can use ReportExportControl - it doesn't seem to be a part of the SDK I downloaded(but maybe I'm missing something) - I need the SDK version for Crystal Reports 2008.
    I do have Microsoft Office 2003.  Maybe this is causing issues?

  • [CS3 / VBS] jpeg export - light horzontal line in final image...

    Hello,
    I am having an issue when exporting jpegs.
    When I output at the same dpi as an image placed on my document, I am getting between 1 and 5 horizontal light-colored lines showing up on the created jpeg. If I increase or decrease the output resolution by around 10 dpi, the line goes away.
    For example, my document has a 300 dpi image on it, I export at 300 dpi, I get a light colored line horizontal through just the image on the page, not anything to the left or right of the image area. If I output a 310 dpi jpeg, everything looks fine.
    This behavior happens whether called in code or exported by hand through the InDesign interface. I have also tried exporting to pdf, and it is find - no light-colored line. Last bit of information: The images I am using are both 24 bit color tiffs and grayscale tiffs. I have not tried it yet with other file formats.
    Anybody else run into this - and if so, what can I do about it?
    Thanks!

    I think I may have found out the problem here.
    The problem areas are with the high contrast blue and red-and other areas but blue and red show the most degradation. Obviously, DV being 4:1:1 (Panasonic DVCPro, NOT the 4:2:0 of DV PAL) there is a lot of colour information missing and the blue channel always takes the heaviest losses on the DVCPro format.
    The reason we've never seen this before is because we've always used the HVX cameras for either DVCPro 50 or DVCPro HD in this particular setup. In normal DV mode we almost always use our DVX100's which do have the different colour sampling and manage to smooth over this high contrast blue and red issue because of the sampling method and other factors like lesser quality optics, CCD blocks etc.
    So, by colour smoothing the material, something which QT player appears to do by default (I'm awaiting a reply from my engineer friend at Apple to confirm this) the steppy vertical lines disappear and everything is back to normal. It doesn't matter if the material is stretched out way beyond it's original dimensions, with the colour smoothed it fixes the banding on the high contrast red and blue areas.
    So the conclusion is format/codec, using a blue screen when a green one is far better suited to DV and subject material all conspired to produce the problem.
    As for the 1024 x 576 quandry, you say it doesn't exist yet if you select the Widescreen PAL square pixel preset in AE, the frame dimensions are...naturally: 1024 x 576. We also produce all our graphics for our video's at SD at that resolution and they work a treat in FCP in the anamorphic projects.

  • Export jpeg ignores 300dpi setting and becomes 72dpi

    When I’m exporting my file (1200 x 1200 pixels) to jpeg, the final jpeg is only 72dpi even though I pick 300dpi and max quality from the JPEG options window. The original file I’m using is large enough 3366 × 2476 pixels with 300 dpi. Help anyone?

    I open it in Preview. Then Tools > Inspector. I attached a screenshot of what I see. Thanks for trying to help.

  • Destructive Export of a Set of JPEGs?

    I know I can do the following on a one photo basis:
    1. make modifications in the develop module to a JPEG (non-destructive)
    2. export the JPEG by applying the modifications and overwriting the original (destructive)
    3. delete the development history from LR
    Can I do 2+3 to a set of photos rather than one-by-one?
    The reason is that I want the development modifications to be visible also to other applications and I don't want
    to create copies of the photos in some other place.
    Thanks.

    I understand your argument but I question that this works well for a non-professional photographer.
    I am not a professional photographer, and it works well for me (and most LR uses, professional or not)
    I know we are talking philosophy now but I doubt that once one is happy with a photo one will go back editing it again, at least no edit which can't be done on the JPEG.
    My experience is different. As I learn more about LR, I go back and make further edits to my photos. The quality loss of saving a .jpg and then doing further edits cannot be undone. Perhaps the quality loss is too small to notice for most people and most purposes, but it is there.
    After I have done editing my photos I like to show them under various circumstances, e.g. to friends on my HTPC in the living. Your (LR-centric) approach would force me to duplicate all my >20,000 photos as unprocessed ones for LR and processed ones for showing. It would be a nightmare to keep them in sync.
    The LR approach does not require you to duplicate your photos. LR makes wonderful slide shows. You can create the slideshow in LR, save it as a .pdf, and display it anywhere. Or simply display the photos from within LR, in which case there are no duplicates needed, and no keeping them in sync.
    For RAW the situation is different. Since I shoot RAW photos I keep them and export JPEGS. But that is only since a year or so.
    I am not sure what this means, but I see no difference between Raw and Jpg in the LR workflow.
    In summary, LR does everything you need to do without resorting to exporting .jpgs (and wiping out the originals). I still can't imagine why anyone would pay all that money for LR and then specifically avoid using it in the most effective and efficient manner.

  • Motion Jpeg no longer an option on export

    I have been using quicktime pro to convert tga image sequences into quicktimes. Our in house standard is Motion JPEG A, and I had been doing this for about two years. I now no longer have that as an output option? What happened? This is on all 3 of my machines, ver 7.4.1 on windows, ver 7.4.5 on windows, and ver 7.4.1 on a mac.
    I also cannot choose motion jpeg as my export from Final Cut pro, but can choose it as my timeline settings.
    Any suggetions on how to get it back?

    QuickTime System Preference pane / Advanced tab.
    Check the button to "Show legacy encoders".

  • Keyword and Keyword SETS export option

    We REALLY, REALLY need a way to export complete Keyword Sets and Keywords to a file.
    I now know, sadly too late, that you can copy the folders from--C:\Documents and Settings\username\Application Data\Adobe\Bridge--to someplace safe and get a backup.
    But this is hardly intuitive.

    Being new to bridge, the inability to export the keyword sets is one of the first most glaring feature omissions I have found.

  • Still no "Selected clip only" option when exporting?

    I have several clips in a project but I want to export them individually, one at a time. Is there a way to do this, or at least move one clip to a new project without having to copy and paste?

    I have Final Cut Studio Academic Edition and so do
    various other friends I have. Of my friends I am the
    only one who does NOT have an option to Export to
    MPEG2 from Final Cut Pro when you click on Quicktime
    Conversion method.
    ///It depends which version of FCP you have. When the latest version FCP 5 was introduced, they took away the MPEG2 option. With FCP you have to use Compressor, which caused me a certain amount of frustration.
    If you have an earlier version of FCP, not sure about the exact number, because I am relatively new at this, but if you have a registerd copy of Studio DVD Pro installed, you will be have the MPEG2 option.
    If you have an earlier verision of FCP, and you do not have the MPEG2 option, you may want to reinstall Studio DVD Pro.
    Studio?? If so, how do I completely uninstall Final
    Cut Studio, including settings and my serial to do a
    complete fresh install?
    I'm guessing here, but I would suggest using Spotlight to find any preferences for final cut pro and trashing them, plus the application itself. You might even want to trash the receipts for FCP as well.
    Hope this helps.
    Hank Kearns
    Power Mac G4    

Maybe you are looking for

  • UML code generation

    Hi, I'm developing an application of ~50+ classes in UML on JSE8 and use java code generation. The question is about aggregations. Navigable aggregations translate in java code to a class attribute, and to the corresponding getter/setters-methods. A

  • Messages from Adapter framework  to IS disappear

    During processing of interfaces, it happens some times that the sending of messages from Adapter Framework to Integration Server is broken but no status message is traced. Before this break, the messages’ state is correctly visible on integration ser

  • Setting up the look of your iTunes U "storefront"

    I realize that this is to be covered in documentation that is not here yet, but I just want to make sure that I'm seeing what everyone else is seeing after connecting to my institution's site: My authentication perl script sends no USER information.

  • Invoking operations from a jsp correlation error

    Hi, I’m a student in Informatics at the University of Turin (Italy). On December I’m graduating and so I’m finishing my stage about web services and BPEL, that actually is the object of my thesis. To realize my stage I’ve used the Oracle BPEL Process

  • Flash professional cs5.5

    where can i find flash profesional cs5.5 download links ?