Image processor always on top?

When I use image processor (launched by Photoshop or Bridge) Photoshop  go in front (top window) each new picture processed, means every  seconds.
It's pretty annoying cause I can't even keep a browser in front...
Does anybody have the same problem?
It comes with CS4 and CS5, on 2 different machines.
How can I fix that?

The Image Processor resize is a fit image type resize not an Image Size dialog type resize.  Let say you have a 3:2 aspect ratio camera. Landscale image have 3:2 aspect ratio and portrait have 2:3  aspect ratio. You want the resize your large camera images for the web. You want the longest side to be 600 px. You would set the width and height values 600 px. Your image would be resize constraine to retain their aspect ratios. So landscape images would resize to 600px by 400 px and Portraits would resize to 400 px by 600 px. You can also resize Image fot a device like your 4:3 UXGA display set 1600 in for the width and 1200 for the height Portrait would still be 2:3 with a 1200 px height and Landscape will still be 3:2 with a 1600 px width. When displayed on you 4:3 display the whole images would fit on your display and fil the width or hight depending in the images orientation ther woul be a border on two sides.
Photoshop also shipts with a FitImage Plug-in so you can record using the plug-in in as action. When you do the values you set in the fitimage dialog while recording the action are recorded into the action step. When the action plays back the values are passed to fitimage and the dialog for the step is not diaplayed. Unless you thurn on that steps dialog. If you do you will see the recorded values are set into the dialog. So you don't need to write a script to handle resize for different orientations.   It just so happens to be that since CS3 FitImage is a script.  So if you want to pass some values to a script. Write the script as a plugin and record as action to pass recorded values.  Plug-in scripting support was added in CS3.   The script needs to record its dialog setting into the action step and also not display it dialog if it being run from a recorded action step.  To learn more read FitImage.jsx in Photoshop's Presets\Scripts folder.

Similar Messages

  • Bridge Image Processor always creates JPEG or TIFF folder, how do I change that behavior?

    I have searched the web, Bridge forums, and Photoshop forums, and come up empty-handed. (The strange thing is, I know there used to be a post that answered this question a few years ago.) Anyway, I use Image Processor quite a bit, and it works great except for the annoying behavior of always creating a new folder to store the newly-created images.
    I remember the solution is to change some line in a (XML?) file from "JPEG" to "". For the life of me, I can't find which file that is! I think it used to located down inside Application Support. I think.
    Thanks for help on this, it's driving me crazy!
    Jeff

    Thanks for replying! I'm running CS 5.1. Oh, now I see...I've never run Image Processor from within Photoshop, just from Bridge. You're right, it does offer different options than Bridge.
    Anyway, I found it what I was looking for.
    Open up (don't run!) the Image Processor.jsx file. I opened it up in ExtendScript Toolkit. The path is /Applications/Adobe Photoshop CS5.1/Presets/Scripts/Image Processor.jsx
    I'm on line 1574 (in other versions, the line number may vary)
    This is what the line says:
    var subFolderText = inFolderLocation + "/JPEG/";
    Change to:
    var subFolderText = inFolderLocation + "//";
    Problem solved. Repeat as necessary for other folders you don't want created (TIFF, PSD)
    Back to work!

  • Wish Image Processor always came up.

    Not most innovative request, but gotta let you know. Lot of times I select the image processor (from within Bridge) and it just does not come up. So far----thankfully, it comes up after a quit and relaunch. But hoping not have to do that down the road. appreciate it.

    Thanks for replying! I'm running CS 5.1. Oh, now I see...I've never run Image Processor from within Photoshop, just from Bridge. You're right, it does offer different options than Bridge.
    Anyway, I found it what I was looking for.
    Open up (don't run!) the Image Processor.jsx file. I opened it up in ExtendScript Toolkit. The path is /Applications/Adobe Photoshop CS5.1/Presets/Scripts/Image Processor.jsx
    I'm on line 1574 (in other versions, the line number may vary)
    This is what the line says:
    var subFolderText = inFolderLocation + "/JPEG/";
    Change to:
    var subFolderText = inFolderLocation + "//";
    Problem solved. Repeat as necessary for other folders you don't want created (TIFF, PSD)
    Back to work!

  • Image component always on top

    I having an issue with the positioning of some of my images... It seems that they are going behind the main img and i cant see them... I have a button so that when you click the image is suppose to appear but it wont... is there some kind of code that allows me to make a contentPane component always ontop or send to the front so its over all the other images?

    I don't know if this will help you, but maybe you should give JLayeredPane a look?

  • PS6 Image Processor - Images on top..?!

    PS6 Image Processor - Images on top..?!
    Hi.
    Previously when using PS3 I would minimise PS during Image processing large batches of images - once minimised nothing of PS was visible on the screen and I could go about other bits without images flashing up during the processing.
    Now with PS6, minimised as before, during this process images are not hidden and every image will flash up on screen during the process...
    Is there a way to disable this feature so images do not flash up? Fingers are crossed.
    All the best
    Gully

    Probably the easiest solution would be to go to Edit>Preferences>Interface and check Open Documents as Tabs.

  • WhiteBoardCustomShapes Images always on top

    Hi,
    I am playing around with the WhiteBoardCustomShapes source and I noticed that images that are drawn on the WBcanvas are always above all the other elements after you reload the whiteboard.
    At first everything is fine. The images stay in the order they are being placed on the whiteboard. But if you close and reopen the whiteboard. All the images are always above the other elements (arrows, strokes,text and so on).
    Does anyone have an idea why and how to fix that?
    Thank you

    Okay so I found the solution and answer. If I am wrong, please correct me.
    First the reason of the problem:
    If you make customShapes you have to register them to the whiteboard. Well in the WhiteboardCustomShapes example they use the following code:
    WBTriangle.mxml LINE 62:93
    protected function onToolBarAdd(p_evt:Event):void
                    if (sharedWB.isSynchronized) {
                       //.....some code here//.............                   
                        var imageShape:WBShapeToolBarDescriptor = new WBShapeToolBarDescriptor(WBShapeToolBarDescriptor.TOOL);
                        imageShape.toolTip ="Image";
                       imageShape.shapeFactory = new WBCustomShapeFactory(WBFileImageShape, WBSimpleShapeFactory.CURSOR_RECTANGLE, new WBFileImageShapeToolBar());
                        //..... and some more code
    Okay so here is the code where we register our customShapaFactory. But if you check some more code com.adobe.coreUI.controls.whiteboardClasses.WBCanvas.as and debug it. You will realize that the
    function protected function drawShape(p_desc:WBShapeDescriptor, p_animate:Boolean=false):void starting at line 894 is not recognizing our factory at the first call. The reason is that the whiteboard is registering its own shapeFactories somewhere at the beginning and we register our customShapeFactory after the whiteboard has already synchronized and started drawing elements on the Canvas.
    SOLUTION:
    Put this line of code this.sharedWB.registerFactory(new WBCustomShapeFactory(WBFileImageShape, WBSimpleShapeFactory.CURSOR_RECTANGLE, new WBFileImageShapeToolBar())); for example into the init() function [Line:70] or in the roomConnector_synchronizationChangeHandler function into the if (cSession.isSynchronized) { block (file: WBTriangle.mxml). This will register your customShapeFactory somewhere at the beginning and will make sure that your shapes are being drawn on the canvas at the same time all the regular shapes (triangles, arrows, rectangles and so on) are.
    ANOTHER PROBLEM:
    Well you might think that it will work now. And it does ..........SOMETIMES.
    Objects do not have an order. doing something like this :
              for (var shapeID:String in _shapes) {
                    returnArray.push(shapeID);
    does not mean you will get the elements into the array in the same order as they are in the Object. So in line 423 file com.adobe.coreUI.controls.whiteboardClasses.SharedWBModel.as the function override public function getShapeIDs():Array does the above. To get rid of that problem i just added one line returnArray.sort(Array.NUMERIC); to that function.My changed function looks like this:
              override public function getShapeIDs():Array
                 var returnArray:Array = new Array();
                 for (var shapeID:String in _shapes) {
                     returnArray.push(shapeID);
                 returnArray.sort(Array.NUMERIC);
                 return returnArray;
    After the two above mentioned changes everything is being rendered in the order it was originally drawn on the whiteboard.
    If anyone knows a different or better way, please tell us. If not I hope that this will help somebody out there that had the same headache causing problem, for example you SANDY_LERMAN

  • Lightroom JPEG export VS Photoshop Image Processor

    Hey guys:
    Long time photoshop and lightroom user (long time user of all things Adobe). First post here in the forums. I did a search for my question but I think it was too specific, so it returned zero results.
    My question is about Lightroom's JPEG export vs Photoshops Image Processor. When I export a RAW file to JPEG from Lightroom, the file size is freaking huge. The JPEG is as big as my original RAW file (~25mb). Settings are set to default - 100 quality. Everything else remains untouched.
    However, when I use Photoshop's image processor (I launch it through Bridge, easier that way for me) and process the RAW images that way, my JPEGs are roughly 5-10mb in size. Settings in Image Processor are quality 10 and thats it. No actions being run or anything.
    Can anyone shed some light as to why Lightroom exports JPEGs that are roughly 2-4 times the size of Photoshop's JPEGs? My initial thoughts are that the 100 quality setting in Lightroom is more like Photoshop's quality 12 (that always makes me think of Spinal Tap - "Why don't you just make ten louder and make ten be the top number and make that a little louder?" "These go to eleven.") Ideally, exporting out of Lightroom would be much easier for my workflow.
    Thanks in advance.
    -The Doctor

    DrMilesBennell wrote:
    Can anyone shed some light as to why Lightroom exports JPEGs that are roughly 2-4 times the size of Photoshop's JPEGs? My initial thoughts are that the 100 quality setting in Lightroom is more like Photoshop's quality 12 (that always makes me think of Spinal Tap - "Why don't you just make ten louder and make ten be the top number and make that a little louder?" "These go to eleven.") Ideally, exporting out of Lightroom would be much easier for my workflow.
    You are correct: LR Quality 100 = PS Quality 12
    Despite LR having 101 Quality settings (0 to 100) it actually only has 12 Quality settings the same as PS 'Baseline Standard':
    JPEG Quality Setting Comparison
    PS
    LR
    LR Range
    Typical Reduction
    0
    0
    0-7%
    11%
    1
    10
    8-15%
    23%
    2
    20
    16-23%
    14%
    3
    30
    24-30%
    14%
    4
    35
    31-38%
    16%
    5
    40
    39-46%
    24%
    6
    50
    47-53%
    4%
    7
    55
    54-61%
    27%
    8
    65
    62-69%
    25%
    9
    70
    70-76%
    31%
    10
    80
    77-84%
    35%
    11
    90
    85-92%
    41%
    12
    100
    93-100%
    I keep a small copy of the above table taped to my monitor. I chose the numbers under the 'LR' column for the 12 steps (not AA's) to make it easier to remember. In actuality ANY number in the LR Range column will produce the same results for each step.
    Under the 'Typical Reduction' column notice the small amount of reduction for PS 6 (LR 47-53%) Quality setting. If interested why AND why you probably shouldn't use PS 7 (LR 54-61%) Quality setting see this post:
    http://forums.adobe.com/message/5641903#5641903

  • Image Processor doesn't launch

    Hi, I'm using CS5 Bridge and Photoshop, and I can't get my Image Processor dialog box to launch in Photoshop when I go to  Tools>Photoshop>Image Processor in Bridge. Photoshop will launch but no dialog box appears. I have updated all my programs and reset the preferences but I am still experiencing this problem. Any help you guys could give would be greatly appreciated. Thanks!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Photoshop Image Processor?

    I have become accustomed to running some Sharpening Actions from Bridge using the Photoshop Image Processor feature. Is anything like this possible through Lightroom?
    Thanks,
    Nick

    [email protected] wrote:
    > John,
    > Thanks for the pointer. Some quick followup questions if I may:
    >
    > My workflow is to shoot RAW, color correct in ACR, and then from Bridge, use Image Processor. I have always assumed that when Image Processor runs my sharpening actions, Photoshop processes a temporary PSD format file (in its original size) before it converts it to a JPG.
    >
    > The way the Lightroom/Droplet approach sounds is that the actions/droplets are run after the JPEG conversion process (and resizing) is complete.
    >
    > My questions: Is my understanding of the different sequences correct? And, does it impact the final quality in any way?
    >
    > Thanks.
    > Nick
    2 alternatives for you...
    1. Allow Lightroom to export, and then run the sharpening on the
    resulting files. There's a quick tutorial here
    http://www.photoshopservices.co.uk/lightroom/droplets.htm. Whilst you
    could export to psd and then let your droplet convert to jpeg after
    sharpening, that will take a lot more processing power than going
    straight to jpeg, and it's probably not worth it in a real world
    environment. Saving as top quality jpeg twice is not going to kill your
    file. (Test it!)
    2. Alternatively, do all your colour correction in LR, save the changes
    to XMP sidecar files, and then find them in Bridge with either CS2/ACR
    3.7 or CS3/ACR4 and run Image Processor as you usually would. This
    would just open and save each file once, as it does in your current
    workflow.
    Victoria
    www.photoshopservices.co.uk

  • Image Processor Tab Missing in New Adobe Bridge CC 2014

    In the new Bridge CC you used to have a TAB under tools called Photoshop which you could run the script Image Processor for easily processing jpegs. What has happened to this and is their maybe a new way of processing jpegs to lo-res that I dont know about from tiff or jpeg or does my bridge have a problem?
    I have attached a image grab from my bridge that shows that the tab is not there. I know that you can access image processor directly from Photoshop, but they used to always be linked.

    No, it is still in Bridge CC.
    Did you uninstall Photoshop CC after installing Photoshop CC 2014? If so, that may have removed some of the Bridge integration scripts by mistake. Re-installing Photoshop CC 2014 should replace the scripts.
    and it should give the image processor tab back

  • Image Processor not working in CS 5

    I have installed CS5 Design Premium on my Mac Pro at work. (Had installed the education demo, but it turns out my school doesn't fit Adobe's critereon for eligibility - and doesn't take it back after telling you that) although we have qualified for years, and we education people in 14 countries are are the top school in the world on our subject. No biggie, the upgrade's only $50 more with the NAPP discount.
    But at home it installed just fine on my Mac Pro and works great. But at work, where CS4 works flawlessly, I can't get it to run Image Processor from Bridge, or import photos into Photoshop Layers, it does do Photomerge, but it also does not do HDR PRo.
    Before the settings wouldn't stick in image processor, and I fixed the issue by changing permissions on the Photoshop settings folder in my user account. Now settings stick for Image Processor, but when I tell it to process a set of images, it keeps coming up with a dialog saying "Sorry, I could not process the following files..." and then gives a list of each file with it's the path.
    I'm wondering if the javascrpits running this process are broken, or have permission problems. (Image Processor, HDR Pro, etc.)
    If in Bridge, I seelct Tools->Photoshop->Batch, it gives me an error dialog: "FatalError: General Photoshop error occurred. This functionality may not be available in this version of Photoshop. <No additional Information Available>"
    I rely on Photoshop for a very large portion of my work. And that includes processing thousands of images. I cannot see how this problem is unique to me. Is anyone else having this problem? Is there a fix? Am I stuck with CS4 for automation? BTW, I can use Applescripts to automate Photoshop CS5. How wierd is that? Scripts I wrote work, but built-in ones appear to be broken on this machine.
    Additional information: I'm on a Windows network using Active Directory and my company user account while this is happening. Where it works at home, it's just my own Mac running OS X 10.6.4. I have all the latest CS5 updates installed.

    But all the
    files that are in my home directory (Snow Leopard 10.6.5) give that error.
    Do you have a beta of Snow Leopard, to my best knowledge 10.6.4 is the
    latest version??
    I'm going to format
    the drive on Monday and restore my system from Backup and see what that does.
    First try the uninstall CS5 suite using the uninstaller that is in each
    application folder. Also erase your serial number from computer and run the
    clean script:
    http://www.adobe.com/support/contact/cs5clean.html
    It is useless to reformat and after that reinstall from Back Up when you
    also re install the current preferences, highly likely you will end up with
    the same problem because you copied the old prefs again

  • Adobe Photoshop CS3 Image Processor not converting files to sRGB Profile

    I have been experiencing a problem with Photoshop CS3 Image Processor no longer converting profiles to sRGB.   It converts all of the files from Camera Raw to JPEG, but not sRGB as well.  I used to be able to batch convert an entire folder of RAW images to JPEG, sRGB through the Image Processor.
    My Photoshop CS3 Working Space is Adobe RGB (1998).  I need to convert an entire folder of images selected in Bridge to sRGB working space in order to publish a photo album from one of the on-line publishing companies.  I can open each individual Camera Raw file in Photoshop and convert each to JPEG, sRGB, but this takes a tremendous amount of time.
    The following procedure has worked for me in the past, but for some reason no longer works:
    I select the images in the desired Bridge CS3 folder.  Upper tool bar, "Tools" > "Photoshop" > "Image Processor".  In Image Processor:
    Section 1 - ""Process files from Bridge only (11)"  Whether or not I place a checkmark by "Open first image to apply settings", it makes no difference in the outcome.
    Section 2:  "Save in same location"
    Section 3 - "Checkmark by "Save as JPEG, quality 12".  Also a checkmark by "Convert Profile to sRGB"
    Section 4 - Checkmark by "Include ICC Profile"
    I replaced my iMac one month ago and reinstalled Photoshop CS3, but this Image Processor problem had been occurring even with my old computer.
    Not sure if you need this information:
    I'm currently on Mac OS X Version 10.6.4
    Processor:  2.93 Ghz Intel Core i7
    Memory:  8 GB 1333 Mhz DDR3
    I don't know if it's related,  Photoshop CS3 on my old computer was running in Rosetta.  I don't know if it's running in Rosetta now, the name does not appear when Photoshop boots up.  How do I get it to run in Rosetta again?

    Heh heh heh.  It's always true that we find the answer just after making public our problems, which in turn we did after trying to find the problems ourselves for hours.
    Thanks for following up with the answer.
    -Noel

  • File Place does not appear on my menu. Neither does Tools Photoshop Image processor.

    In Bridge File>Place is grayed out on my menu. Tools>Photoshop>Image processor does not appear at all.  I have reset the preferences numerous times and am good to go until I shut down my computer.  When I reboot they are gone again.  I have a Mac with OS 10.10.2 (Yosemite) and CC. 

    Mardi Carter wrote:
    I shut down using "Shut Down" under the Apple menu.....always…
    Well, that's fine for the OS, but sometimes not so great for Photoshop.  Try QUITTING Photoshop from the Photoshop menu, or by Command Q, before you get anywhere near your Apple menu .
    Gene gave you sound advice, but don't forget to run Repair Permissions with Apple's Disk Utility before and after any installation, upgrade or update of the OS or any application.
    You'd think that shouldn't be necessary, but it is indeed vital, indispensable routine maintenance.
    Forget about "it had never happened before", Yosemite is a work in progress.  Apple never gets a major OS X release right until about the dot four or five release, so Yosemite has a way to go before it's at 10.10.4 or 10.10.5.  That has proven to be the nature of the beast.

  • Image Processor not working for me. Help!

    In a nearby thread I've reached a stumbling block. Image Processor in CS4's PS is not working for me. I have a folder of psd's generated on the fly via File > Export > Data Sets as File... and now I'm trying to process those psd's to generate a JPEG of each. The only strange characteristic of the auto-generated PSD files is that there is no image preview available within the Finder. When a psd is selected the preview pane reads:
    "This layered Photoshop file was not saved with a composite image"
    I've verified in my Preferences > File Handling that image previews are always saved. (But I've been using PS for a long time and previews are always available with all my manually saved work.)
    So here's what happens when I invoke File > Scripts > Image Processor...
    In section 1 of the menu I select the source folder where the psd files reside
    In section 2, I select 'Save in same location'
    In section 3, I select 'Save as JPEG'
    In section 4, I change nothing. No special actions. Include ICC profile is checked.
    When I select run I get an error message: "Sorry, I could not process the following files:"
    And then it lists what appears to be 3 lines per psd file in the source directory:
    The path to the source dir
    The name of the source dir
    The [source_dir]/[filename.psd]
    What am I doing wrong?

    mrdior wrote:
    I have a folder of psd's generated on the fly via File > Export > Data Sets as File... and now I'm trying to process those psd's to generate a JPEG of each. The only strange characteristic of the auto-generated PSD files is that there is no image preview available within the Finder. When a psd is selected the preview pane reads:
    The part I don't understand is the "export" Part. File > Export > Data Sets as File.. on my machine is grayed out so I don't know how this feature is used. Is Export > Data Sets as File... used with CSV data sets and Photoshop variables?
    Check your Photoshop preferences and make sure you have set in the file handling tab "Maximize PSD and PSB File Compatibility:" to Always using the pull down menu. If that is not your current setting try setting that to see if the exported PSD files contain composite previews. When I use save as PSD on my system I alway see Photoshop save through up a popup window stating generating composite preview image.

  • How to keep toolbar in Photoshop CS5 always on top

    I have just upgraded to CS5 from CS3. In CS5, when I move an open document around on screen it covers over the toolbar, but only if the toolbar is docked to the side of window.  It will also cover the property bar and menu bar at the top of the interface.  The palettes on the r/h side always stay on top if not docked to the edge of the window, but if docked they too get covered over. In CS3 all the interface items stayed on top.  Is there any way to make sure they is always on top when docked (I prefer not to have them free floating)?
    I'm using Vista Ultimate.  My monitor is a Dell 24" Ultrasharp running at native 1920x1200 res.

    Thanks for the suggestion.  Turning OpenGL off makes no difference, and with it turned on I have also tried the three different quality settings, none of which made any difference either.
    I've also just tried with CS5 in a window, rather than fully maximised, and like that I can actually drag an open image right outside the Photoshop interface!
    Dave

Maybe you are looking for

  • Ipad 2 - can no longer connect to facetime

    We had to restore my daughters Ipad 2 completely as the battery was running down completely within a couple of hours. She no longer can access facetime. I see in Settings, restrictions the facetime "app" but it won't let me swipe it to turn it on. Ca

  • OD Setup Error

    After many months or enduring OD issues, I finally decided to bit the bullet and do a fresh install of both Mavericks and Server.  After the fresh install, I attempted to re-establish the Open Directory Master from an archived version of OD and it fa

  • Problems IWth Certain Types of Stills

    Something has happened to my DVDSP. It no longer recognizes .tiff, .jpg, .psd files and they show only as a black screen. It will recognize .pict files. Any old project I had just shows a black screen for those still images. I did a search and didn't

  • Replication Link Analyzer Unusual Error

    Just finished upgrading my Heirarchy to SCCM 2012 R2, everything is fine after migration and the environment has been stable for several weeks. One site however, is showing warnings for Replication. The replication isn't failing, its been up to date

  • Why i have as far as 7 copies of my photos that i didint copy on finder?

    i have several copys of all my photos on the folder of all my files on finder. some i can notice are from iphoto, a example: of 1 photo y have 4 in this files, 1 as IMG_0118_1024.jpg, 2 as IMG_0118.jpg and the fourth as IMG_0118.JPG (notice the jpg-J