Newbie to LR3 - Local sharpen after image resize ?

Maybe someone can point me to help. I just post to web on Flickr, no printing yet.
I started photo editing with PSE5 & have moved to PSE8 since. A Mark Galer book about PSE started me on a path of .raw editing & i've been using his scheme since. I hoped i was moving to a smoother overall process with LR3, but now that i've gotten it i have a lot more doubts. I can see improves through the develop phase (sort of a curves, grad filter, noise removal, lens correction). After that, i feel only lacks (with my current low knowledge level).
The things i want included past develop are these: image resize, local sharpening (and blurring - after image resize) smooth border capability (with choice of color). One way of course is to export to PSE8. I expected more from LR3, though - rather than just 2/3 of a job for 3 * the price.

Pete Marshall pointed out one of the quickest resources for information on using Lightroom's tools, but that's not a tutorial! LR is best learned using one or more of the on-line tutorials or LR books available......and then using it! Lightroom's non-destructive workflow has been tailored to fit the specific needs of the "digital photographer" for processing Camera RAW image files. Photoshop has a vast arsenal of both destructive and non-destructive tools for general image processing, but with no specific focus on usage.
Everything you stated in your last sentence can be done very easily in LR, but using an entirely different workflow organization than Photoshop.
The things i want included past develop are these: image resize, local sharpening (and blurring - after image resize) smooth border capability (with choice of color). One way of course is to export to PSE8. I expected more from LR3, though - rather than just 2/3 of a job for 3 * the price.
1) image resize, local sharpening (and blurring - after image resize) - This can be done using the LR Export function and adjusting 'Image Size,' and 'Output Sharpening.' NO, it is not the same methodology as Photoshop. NO, it is not as flexible. YES, it does a very nice job with the vast majority of "digital camera image files," once you get used to a different workflow.
2) smooth border capability (with choice of color) - This can be done using LR's 'Slideshow', 'Print', and Web Modules, choosing the one most appropriate for your target usage. NO, it is not the same methodology as Photoshop, but it does a very nice job on the majority of "digital camera image files." LR also offers multi-media functions that are unavailable in PS.
In the final analysis you need to learn LR's non-destructive workflow procedures, editing tools and module functions, as a compliment to what you already know about using Photoshop. The two applications are mutually independent, but play together well when needed.

Similar Messages

  • Why won't Photoshop revert to earlier history state after image resize when scripted?

    I've written an Applescript to automate watermarking and resizing images for my company. Everything generally works fine — the script saves the initial history state to a variable, resizes the image, adds the appropriate watermark, saves off a jpeg, then reverts to the initial history state for another resize and watermark loop.
    The problem is when I try not to use a watermark and only resize by setting the variable `wmColor` to `"None"` or `"None for all"`. It seems that after resizing and saving off a jpeg, Photoshop doesn't like it when I try to revert to the initial history state. This is super annoying, since clearly a resize should count as a history step, and I don't want to rewrite the script to implement multiple open/close operations on the original file. Does anyone know what might be going on? This is the line that's generating the problem (it's in both the doBig and doSmall methods, and throws an error every time I ask it just to do an image resize and change current history state):
                        set current history state of current document to initialState
    and here's the whole script:
    property type_list : {"JPEG", "TIFF", "PNGf", "8BPS", "BMPf", "GIFf", "PDF ", "PICT"}
    property extension_list : {"jpg", "jpeg", "tif", "tiff", "png", "psd", "bmp", "gif", "jp2", "pdf", "pict", "pct", "sgi", "tga"}
    property typeIDs_list : {"public.jpeg", "public.tiff", "public.png", "com.adobe.photoshop-image", "com.microsoft.bmp", "com.compuserve.gif", "public.jpeg-2000", "com.adobe.pdf", "com.apple.pict", "com.sgi.sgi-image", "com.truevision.tga-image"}
    global myFolder
    global wmYN
    global wmColor
    global nameUse
    global rootName
    global nameCount
    property myFolder : ""
    -- This droplet processes files dropped onto the applet
    on open these_items
      -- FILTER THE DRAGGED-ON ITEMS BY CHECKING THEIR PROPERTIES AGAINST THE LISTS ABOVE
              set wmColor to null
              set nameCount to 0
              set nameUse to null
              if myFolder is not "" then
                        set myFolder to choose folder with prompt "Choose where to put your finished images" default location myFolder -- where you're going to store the jpgs
              else
                        set myFolder to choose folder with prompt "Choose where to put your finished images" default location (path to desktop)
              end if
              repeat with i from 1 to the count of these_items
                        set totalFiles to count of these_items
                        set this_item to item i of these_items
                        set the item_info to info for this_item without size
                        if folder of the item_info is true then
      process_folder(this_item)
                        else
                                  try
                                            set this_extension to the name extension of item_info
                                  on error
                                            set this_extension to ""
                                  end try
                                  try
                                            set this_filetype to the file type of item_info
                                  on error
                                            set this_filetype to ""
                                  end try
                                  try
                                            set this_typeID to the type identifier of item_info
                                  on error
                                            set this_typeID to ""
                                  end try
                                  if (folder of the item_info is false) and (alias of the item_info is false) and ((this_filetype is in the type_list) or (this_extension is in the extension_list) or (this_typeID is in typeIDs_list)) then
      -- THE ITEM IS AN IMAGE FILE AND CAN BE PROCESSED
      process_item(this_item)
                                  end if
                        end if
              end repeat
    end open
    -- this sub-routine processes folders
    on process_folder(this_folder)
              set these_items to list folder this_folder without invisibles
              repeat with i from 1 to the count of these_items
                        set this_item to alias ((this_folder as Unicode text) & (item i of these_items))
                        set the item_info to info for this_item without size
                        if folder of the item_info is true then
      process_folder(this_item)
                        else
                                  try
                                            set this_extension to the name extension of item_info
                                  on error
                                            set this_extension to ""
                                  end try
                                  try
                                            set this_filetype to the file type of item_info
                                  on error
                                            set this_filetype to ""
                                  end try
                                  try
                                            set this_typeID to the type identifier of item_info
                                  on error
                                            set this_typeID to ""
                                  end try
                                  if (folder of the item_info is false) and (alias of the item_info is false) and ((this_filetype is in the type_list) or (this_extension is in the extension_list) or (this_typeID is in typeIDs_list)) then
      -- THE ITEM IS AN IMAGE FILE AND CAN BE PROCESSED
      process_item(this_item)
                                  end if
                        end if
              end repeat
    end process_folder
    -- this sub-routine processes files
    on process_item(this_item)
              set this_image to this_item as text
              tell application id "com.adobe.photoshop"
                        set saveUnits to ruler units of settings
                        set display dialogs to never
      open file this_image
                        if wmColor is not in {"None for all", "White for all", "Black for all"} then
                                  set wmColor to choose from list {"None", "None for all", "Black", "Black for all", "White", "White for all"} with prompt "What color should the watermark be?" default items "White for all" without multiple selections allowed and empty selection allowed
                        end if
                        if wmColor is false then
                                  error number -128
                        end if
                        if nameUse is not "Just increment this for all" then
                                  set nameBox to display dialog "What should I call these things?" default answer ("image") with title "Choose the name stem for your images" buttons {"Cancel", "Just increment this for all", "OK"} default button "Just increment this for all"
                                  set nameUse to button returned of nameBox -- this will determine whether or not to increment stem names
                                  set rootName to text returned of nameBox -- this will be the root part of all of your file names
                                  set currentName to rootName
                        else
                                  set nameCount to nameCount + 1
                                  set currentName to rootName & (nameCount as text)
                        end if
                        set thisDocument to current document
                        set initialState to current history state of thisDocument
                        set ruler units of settings to pixel units
              end tell
      DoSmall(thisDocument, currentName, initialState)
      DoBig(thisDocument, currentName, initialState)
              tell application id "com.adobe.photoshop"
                        close thisDocument without saving
                        set ruler units of settings to saveUnits
              end tell
    end process_item
    to DoSmall(thisDocument, currentName, initialState)
              tell application id "com.adobe.photoshop"
                        set initWidth to width of thisDocument
                        if initWidth < 640 then
      resize image thisDocument width 640 resample method bicubic smoother
                        else if initWidth > 640 then
      resize image thisDocument width 640 resample method bicubic sharper
                        end if
                        set myHeight to height of thisDocument
                        set myWidth to width of thisDocument
                        if wmColor is in {"White", "White for all"} then
                                  set wmFile to (path to resource "water_250_white.png" in bundle path to me) as text
                        else if wmColor is in {"Black", "Black for all"} then
                                  set wmFile to (path to resource "water_250_black.png" in bundle path to me) as text
                        end if
                        if wmColor is not in {"None", "None for all"} then
      open file wmFile
                                  set wmDocument to current document
                                  set wmHeight to height of wmDocument
                                  set wmWidth to width of wmDocument
      duplicate current layer of wmDocument to thisDocument
                                  close wmDocument without saving
      translate current layer of thisDocument delta x (myWidth - wmWidth - 10) delta y (myHeight - wmHeight - 10)
                                  set opacity of current layer of thisDocument to 20
                        end if
                        set myPath to (myFolder as text) & (currentName) & "_640"
                        set myOptions to {class:JPEG save options, embed color profile:false, quality:12}
      save thisDocument as JPEG in file myPath with options myOptions appending lowercase extension
                        set current history state of current document to initialState
              end tell
    end DoSmall
    to DoBig(thisDocument, currentName, initialState)
              tell application id "com.adobe.photoshop"
                        set initWidth to width of thisDocument
                        if initWidth < 1020 then
      resize image thisDocument width 1020 resample method bicubic smoother
                        else if initWidth > 1020 then
      resize image thisDocument width 1020 resample method bicubic sharper
                        end if
                        set myHeight to height of thisDocument
                        set myWidth to width of thisDocument
                        if wmColor is in {"White", "White for all"} then
                                  set wmFile to (path to resource "water_400_white.png" in bundle path to me) as text
                        else if wmColor is in {"Black", "Black for all"} then
                                  set wmFile to (path to resource "water_400_black.png" in bundle path to me) as text
                        end if
                        if wmColor is not in {"None", "None for all"} then
      open file wmFile
                                  set wmDocument to current document
                                  set wmHeight to height of wmDocument
                                  set wmWidth to width of wmDocument
      duplicate current layer of wmDocument to thisDocument
                                  close wmDocument without saving
      translate current layer of thisDocument delta x (myWidth - wmWidth - 16) delta y (myHeight - wmHeight - 16)
                                  set opacity of current layer of thisDocument to 20
                        end if
                        set myPath to (myFolder as text) & (currentName) & "_1020"
                        set myOptions to {class:JPEG save options, embed color profile:false, quality:12}
      save thisDocument as JPEG in file myPath with options myOptions appending lowercase extension
                        set current history state of current document to initialState
              end tell
    end DoBig

    As many others here I use JavaScript so I can’t really help you with your problem.
    But I’d like to point to »the lazy person’s out« – with many operations that result in creating a new file on disk I simply duplicate the image (and flatten in the same step) to minimize any chance of damaging the original file if the Script should not perform as expected.

  • PSE newbie frustrated, please help with image resizing

    Hi!
    Tutorials aren't helping me, nor is trial and error. I just want to resize some photos I downloaded to my computer, then upload them to a website to use as my avatar or signature. There are specific pixel dimensions I must adhere to. I want to keep the photo in it's entirety, but when I resize it, it distorts a bit, looks fuzzy...
    I can't figure out what the heck I am doing wrong. Some pictures turn out just fine and others look really bad. I know it can be done because I've seen the same pictures I'm trying to size, being used for the same thing I want to use them for, but theirs are clear, absolutely no distortion whatsoever. The pixel dimensions I have to work with are either 100x100, or 450 pixels wide by 90 pixels high.
    I hope this made sense, I'm not sure how else to word it. Please forgive my ignorance, I've really been trying.
    Thank-you
    B

    For an avatar it’s possibly best to crop to begin with so you get a true square.
    Open the image and select the crop tool and change the aspect ratio to 1 x 1 or 5 x 5 then drag out a square and move the image around inside it or drag the bounding box borders until you have it looking as you want. Then click the green check mark.
    On the top menu click Image > Resize > Image Size and in either the height or width box type 100 px (you only need to type the dimension once the other box will change to 100 automatically. Make sure you have the bottom three boxes checked:
    Scale Styles
    Constrain Proportions
    Resample Image
    With all three checked set the bottom dropdown to Bicubic and then hit OK.
    If you want to apply some sharpening select Enhance on the top menu and choose Unsharp Mask.
    Make sure the Radius is no more than 1.5 and use the amount slider to get the image looking as you want it then save.
      

  • Image resize in CS5 vs cell size in LR3 for large print quality

    What is the benefit of image resizing(larger) with resampling in photoshop than creating a larger cell size and increasing the DPI in LR3 if the file is to be printed just out of LR3.  Is there a significant improvement in image quality if this is done in CS5, if so then what about the need for fractal program.  I am taking my images with a D3x and making prints up to 20x30 on Epson 7900?

    Interoperation from LR is far superior to the basic in PS CS 4, whilst this may have improved in CS 5 I haven't tried it and wouldn't expect it to be any better than LR 3. The print module in LR can also make it all a lot easier to do than using PS. Some may still prefer Genuine Fractals (I have a copy), however I have felt no need for it since LR 2. Any resizing I require is done using LR

  • LR3-Library-Export-Image Resizing:  Specifying Pixel WxH results in different WxH - tips please?

    This is a multi-dimensional question (he he).  I understand my problem is related to the original/developed WxH ratio.  If the pixel WxH I spec in Export-Image Resizing doesn't match that developed proportion, the results are not what I want.  In other words LR3 keeps the original/developed proportion and not what I want for that export.  Ok, so I just answered my own question - but..... please give me some library or export tips for doing what I want to do.
    What I do:
    1 - I edit my images in RAW and like to keep them in their original proportions from my Canon camera as that is the proportion of HxW i use the most
    2 - Later, if the image is really good (at least I like it), I may export it for different purposes and then may choose or require a different proportion.
    3 - I would really like to not have to re-crop in Develop, then go back and Export, then go back to Develop and change it back to original. 
    Besides being tedious and time consuming, can anyone recommend a better way for me to do these "one off" exports (seems to happen more often lately) without screwing around in Develop and messing up my original work?
    Background:
    One of the reasons I do this is to create wallpapers for computers, for various printing/framing proportions, and then for web site situations.  Windows XP (and I think the others) gets really slow if the program must re-size an image for wallpaper (why? go ask Mr. Gates... better get in line).  So to keep performance high, it is best to create the image in the exact pixel dimensions of the monitor.  This is always some weird number and not like anything else I do this for.  The other reason is for a quick, custom print job for someone who wants an odd matting setup for framing (don't ask).  This results in odd proportions.  Regarding the web.... well smooshing a pic into a column etc. etc...    Now while I am proud of my art and understand LR3 will expect me to re-crop to preserve my artistic brilliance, but really..... I would be happy with a proportional crop from the parallel sides of the offending dimension.
    Also, when I spec a dimension, shouldn't the DPI gray out?  What am not understanding here?
    One last request: please give me tips on solving for world peace... this one really bugs me. 
    Thanx in advance! 

    Bruce,
    As you correctly noticed, the WxH ratio in export represents a canvas, into which the exported image is fit. Here are some illustrations on what the different settings mean:
    For what you are trying to achieve, you have to crop the image to the correct dimensions before doing the export. If I had to do it, I would create virtual copies of the original image as the last step and give each virtual copy its own crop, then export the virtual copies.
    Bruce in Philly wrote:
    Also, when I spec a dimension, shouldn't the DPI gray out?  What am not understanding here?
    The DPI resolution has no meaning for the size of the resulting image if you specify pixels in your export dimensions. But the resolution tag is written into the image, which might affect the way an image is printed, depending on the printing application.
    But if you specify your export dimensions in inches or cm, the resolution together with the dimensions in inch/cm determine the size of the resulting image in pixels. I.e. if you specify 5x7" and 300DPI, your exported images size will be 1500x2100 pixels.
    Beat

  • Image resizing after user clicking on it

    Hej,
    Im new to flash. Id like to create image resizing feature.
    After user clicking or pointing on it the image should become
    bigger. I was looking for some tutorial but couldnt find any.
    Can anyone help?Any tip, tutorial, actionscript?
    Regards,
    Nina

    Hi,
    Do other users still work well?
    Locate to Services, find Print Spooler service and check if its startup type is set as Automatic.
    Have you cleared and reset your print spooler?
    Open Services, and stop the Print Spooler service.
    Navigate to the folder below, and open the PRINTERS.
    C:\Windows\system32\spool\PRINTERS
    Delete all files in the PRINTERS folder until it is empty,
    Re-start the Print Spooler service
    Andy Altmann
    TechNet Community Support

  • When in workflow to do localized sharpening and removal of blemishes?

    I work with NEFs that I open into PS as 16 bit Tiffs in Prophoto RGB. My files are intended both for family photobooks and for further editing of the best  - plus these last ones will end up being resized to more than one size before their final output. I presently do not do any sharpening in Camera Raw (I use PS CS6) and remove noise after opening into PS where I convert for smart filters and use either PS's own filters or (mostly) the Neat Image plugin. I do not do any sharpening here as I have learned it would be best to wait as long as possible doing this.
    I want to be able to do some localized sharpening (using the sharpen tool) and also to remove blemishes (here I often use the brush tool that also cannot be used on a smart object). Also output sharpening. I have to admit that I previously did all this (except of course the output sharpening) on the background layer (to minimize file sizes and also because I always keep untouched original files elsewhere) before further editing in PS. When I got some very noisy files from family members with less good cameras and found pixel holes and remaining noise in darker areas I even used the blur tool directly on this layer (on faces) before applying the sharpen tool where needed locally. This is perhaps vandalism from a professional standpoint but a desperate attempt to save these files if important for the family history.
    Can I do the localized sharpening + other localized cleanup early on in the PS editing and only postpone the output sharpening till after rezsizings and JPEG conversion (the photobook files)?
    As for the noise filters: Could I after the above convert for smart filter and here use the noise filters (without sharpening) for an editable version of these and do the rest of my PS editing?
    Or do I really have to perform all this steps for each size of the file?
    I am sorry if the questions are dumb or disclose a lot of misunderstandings but my learning curve seems to become steeper and steeper with age.
    Git

    I work with NEFs that I open into PS as 16 bit Tiffs in Prophoto RGB. My files are intended both for family photobooks and for further editing of the best  - plus these last ones will end up being resized to more than one size before their final output. I presently do not do any sharpening in Camera Raw (I use PS CS6) and remove noise after opening into PS where I convert for smart filters and use either PS's own filters or (mostly) the Neat Image plugin. I do not do any sharpening here as I have learned it would be best to wait as long as possible doing this.
    I want to be able to do some localized sharpening (using the sharpen tool) and also to remove blemishes (here I often use the brush tool that also cannot be used on a smart object). Also output sharpening. I have to admit that I previously did all this (except of course the output sharpening) on the background layer (to minimize file sizes and also because I always keep untouched original files elsewhere) before further editing in PS. When I got some very noisy files from family members with less good cameras and found pixel holes and remaining noise in darker areas I even used the blur tool directly on this layer (on faces) before applying the sharpen tool where needed locally. This is perhaps vandalism from a professional standpoint but a desperate attempt to save these files if important for the family history.
    Can I do the localized sharpening + other localized cleanup early on in the PS editing and only postpone the output sharpening till after rezsizings and JPEG conversion (the photobook files)?
    As for the noise filters: Could I after the above convert for smart filter and here use the noise filters (without sharpening) for an editable version of these and do the rest of my PS editing?
    Or do I really have to perform all this steps for each size of the file?
    I am sorry if the questions are dumb or disclose a lot of misunderstandings but my learning curve seems to become steeper and steeper with age.
    Git

  • When is it best to sharpen an image?

    I'm a little confused about when is the best time to sharpen your image. I shoot RAW, do some global editing in ACR 6, local editing & manipulation in Photoshop CS5 and then print.
    I have heard that its best to sharpen your image as a RAW file in ACR 6, before going into PS for editing and then printing.
    I have also heard that its best to wait and sharpen your image in PS after all editing has been completed and the image has been sized for printing.
    Which is better, or are both? Thanks.

    Both are necessary steps:  Capture Sharpening and Output Sharpening.  The latter has different modalities that are dependent on the resolution of the image and the output media:  web, inkjet, contone…
    Look into PhotoKit Sharpener by PixelGenius.  Just reading the blurb or a review of the set of plug-ins will make a bunch of things clear to you.
    Wo Tai Lao Le
    我太老了

  • Image resizing in Indesign - should I or shouldn't I?

    I would like to know what the best practice is when Placing an image into an Indesign document and then resizing it (obviously to a smaller size).
    Would the results from a graphic/image resized in Indesign be much worse than an image resized in Photoshop before? or would they be the same? Might the results be fine if it is for screen and not if the output is for print?
    Thank you all in advance.

    If it is drastic size reduction I always use photoshop. Because you have more control. The ability to do sharpening after if needed. If is only 10% reduction I don't bother. Or if its going on newsprint. You need to use common sense as to know when to do something. If the finished product is a coffee table book I would make everything 100% in Photoshop before placing the file.

  • Local sharpening with its own sliders

    hallo,
    is it possible now to make creative sharpening like nx2 and photoshop ?
    we have a fantastic detail panel in lr3 and local sharpening was only gain with predefined values given by detail.
    i would like to make a capture sharpening with detail panel and a local sharpening with other values of masking, detail and radius
    is it now possible ?
    like that, for trial images like the one showned in martin evening book (with eye and lines), we could process low frequencies and high frequencies independantly
    clarity is nice but different
    best regards
    marc

    Unfortunately no.  Lr 4 Beta has the same local sharpening implementation as Lr 3.  Often handy, but it does inherit the detail/radius/masking properties from the global settings.  (While I can see the utility of having custom ones for local, that would require more substantial changes to how we render local corrections, plus more changes to the UI.)

  • Images as Buttons and Image Resizing in mxml

    Sorry for all the questions but I've run into a problem when trying to create buttons that are just an image in mxml. When I first tried this I couldn't find a way to get the border around the button to dissapear so it ended up looking like my image had an extra black border around it. Then someone here suggested I just set the buttonMode property of an mx:Image to true which ended up working fine to a point. The problem I'm having is that even if I make the tabEnabled property of the image (that I'm using as a button) true, I can't tab over to it. Is there a way to either get rid of the black borders of a button or to make it so I can tab over to an image I'm using as a button?
    My second question has to do with image resizing. Lets say I have an image of a horizontal line that I want to put at the top of the mxml page, and I want it to extend the full length of the page, even after the user has resized the browser. Is there a way to do that? I've tried putting the width as 100% or giving the image a "left" and "right" value so that presumably it would be stretched to fit within those but nothing has worked so far. Is there no way to do this or am I doing something wrong?
    Thank you for any help you guys can give.

    Of course, sorry about that. So the following is a barebones example of how I currently implement buttons and images as buttons:
    <mx:Button id="facebookButton" icon="@Embed(source='image.png')" width="30"/>
    <mx:Image buttonMode="true" id="button" source="anotherimage.png" enabled="true" click="{foo()}"/>
    And within the image I've tried making the tabFocusEnabled property true but to no avail.
    The following is how I've tried stretching out an image across the whole page:
    <mx:Image source="yetanotherimage.png" width="100%" scaleContent="true"/>
    <mx:Image source="yetanotherimage.png" left="10" right="10" scaleContent="true"/>
    Is this more helpful?

  • Not enough RAM-Memory even to sharpen my images in CC??

    This has never happend before, Photoshop CC says I don't have enough RAM to even sharpen my images with Smart Sharpen. This has never happend before in CS3 or CS6. I have always been working with my CR2-files from an Canon EOS 5D MARK II camera, and it doesn't even work now if I make my images smaller.. My computer is a gaming computer from dell, and I have Windows 8.. Please help..!

    Ok, I didn't crop any of my images. ( I have used "image size" under "image" and I did made them smaller)
    Here is the system information:
    Adobe Photoshop version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x32
    Operativsystem: Windows 8 32 bitar
    Version: 6.2
    Systemarkitektur: Intel Datorfamilj:6, Modell:15, Version:11 med MMX, SSE-heltal, SSE FP, SSE2, SSE3
    Antal fysiska processorer: 4
    Processorhastighet: 2394 MHz
    Inbyggt minne: 3198 MB
    Ledigt minne: 1598 MB
    Minne tillgängligt för Photoshop: 1591 MB
    Minne som används av Photoshop: 66 %
    Plattstorlek för bild: 128K
    Bildcache-nivåer: 4
    OpenGL: Aktiverad.
    Ritningsläge för OpenGL: Avancerat
    Tillåt normalt OpenGL-läge: Sant.
    Tillåt avancerat OpenGL-läge: Sant.
    Tillåt gamla GPU-verktyg för OpenGL: Ej upptäckt.
    OpenCL Otillgänglig
    OpenGL-version: 3.0
    Storlek på rektangulär textur för video: 16384
    OpenGL-minne: 1024 MB
    Grafikkortsleverantör: NVIDIA Corporation
    Grafikkortsrenderare: GeForce GTS 450/PCIe/SSE2
    Visa: 1
    Visa gränser: överst= 0 till vänster= 0, nederst= 1200 till höger= 1600
    Grafikkortsnummer: 1
    Grafikkort: NVIDIA GeForce GTS 450
    Drivrutinsversion: 9.18.13.1106
    Datum för drivrutin: 20130118000000.000000-000
    Grafikkortsdrivrutin: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Grafikläge: 1600 x 1200 x 4294967296 f\x00e4rger
    Grafikkortets namn: NVIDIA GeForce GTS 450
    Grafikkortsminne: 1024 MB
    Serienummer: 90970406556967907553
    Programmapp: C:\Program Files\Adobe\Adobe Photoshop CC\
    Tillfällig filsökväg: C:\Users\Malin\AppData\Local\Temp\
    Photoshops virtuella minne har asynkron I/O aktiverad
    Volym(er) för virtuellt minne:
      C:\, 931,5G, 391,0G fritt
    Mappen Nödvändiga plugin-program: C:\Program Files\Adobe\Adobe Photoshop CC\Required\
    Primär mapp för plug-ins: C:\Program Files\Adobe\Adobe Photoshop CC\Plug-ins\
    Installerade komponenter:
       ACE.dll   ACE 2013/03/19-12:09:02   79.535293   79.535293
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/03/29-12:09:59   79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/03/19-12:09:02   79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/03/19-12:09:02   79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293   79.535293
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158   2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293   79.535293
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1756  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1.   1.
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (32 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Nödvändiga plugin-program:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Adaptiv vidvinkel 14.0
       Al Fresco 14.0
       Banor till Illustrator 14.0
       Basrelief 14.0
       Beskär och räta upp foton 14.0
       Beskär och räta upp foton 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bildpaketfilter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bläckskiss 14.0
       Blixt 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Blött papper 14.0
       BMP 14.0
       Brevpapper 14.0
       Camera Raw 8.1
       Camera Raw-filter 8.1
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       CompuServe GIF 14.0
       Contékrita 14.0
       Dicom 14.0
       Differensmoln 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffus glöd 14.0
       Djup 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ej sammanflätning 14.0
       Entropi 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Färgat ritstift 14.0
       Färgklickar 14.0
       Färgraster 14.0
       FastCore-rutiner 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fiber 14.0
       Filtergalleri 14.0
       Förskjutning 14.0
       Fotokopia 14.0
       Gips 14.0
       Glas 14.0
       Glödande kanter 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Gör flytande 14.0
       Gränspunkt 14.0
       HDRMergeUI 14.0
       IFF-format 14.0
       Infoga vattenstämpel 4.0
       Intervall 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       JPEG 2000 14.0
       Kantiga streck 14.0
       Kantlinje 14.0
       Knipning 14.0
       Korn 14.0
       Kornig film 14.0
       Korsstreck 14.0
       Krackelering 14.0
       Kristallisera 14.0
       Krita & träkol 14.0
       Krom 14.0
       Krusning 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lapptäcke 14.0
       Läs vattenstämpel 4.0
       Linsoskärpa 14.0
       Linsöverstrålning 14.0
       Målat glas 14.0
       Markerade kanter 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mätningskärna 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximal 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Medel 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Medel 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore-rutiner 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Moln 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mörka streck 14.0
       Mosaik 14.0
       Naggade kanter 14.0
       Nätform 14.0
       Neonljus 14.0
       NTSC-färger 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Objektivkorrigering  14.0
       Oljemålning 14.0
       OpenEXR 14.0
       Palettkniv 14.0
       Pastellkrita 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photoshop 3D-motor 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plastfilm 14.0
       PNG 14.0
       Polära koordinater 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Radiell oskärpa 14.0
       Raster 14.0
       Sfär 14.0
       Sicksack 14.0
       Skakreducering 14.0
       Skapa fläckar 14.0
       Skapa plattor 14.0
       Skeva 14.0
       Skevhet 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Skriptingstöd 14.0
       Smart oskärpa 14.0
       Smetig penna 14.0
       Solarisera 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spara för webben 14.0
       Sprejade streck 14.0
       Stämpel 14.0
       Standardavvikelse 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Stänk 14.0
       Stansa ut 14.0
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Stöd för multiprocessor 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Strukturpenna 14.0
       Sumi-e 14.0
       Summering 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Svamp 14.0
       Targa 14.0
       Texturerare 14.0
       Torr pensel 14.0
       Träkol 14.0
       Undermålning 14.0
       Våg 14.0
       Varians 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variationer 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Vattenfärg 14.0
       Vattenringar 14.0
       Vind 14.0
       Virvel 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA-stöd 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
    Valfria plugin-program och plugin-program från tredje part: INGA
    Plug-ins som inte hämtades: INGA
    Flash:
       Mini Bridge
       Adobe Exchange
       Kuler
    Installerade TWAIN-enheter: INGA

  • Permissions issue with image resize

    Ok I'm hoping someone may be able to help with this because it is really frustrating.
    I realise this issue has already been posted in these forums however there was no solution offered that has rectified it for me.  I am getting an error when trying to display thumbnails        "Error converting image (create thumbnail). The "" folder has no write permissions".  And this error when trying to upload and resize images "Image upload error. Error resizing image: Error converting image (image resize). The "" folder has no write permissions. (IMG_RESIZE)". All folders on server have full read, write and execute permissions, so I am really confused why this happenning.  I have removed and updated the includes folder on the server with no joy.  I altered the tNG_custom.class.php, tNG_insert.class.php, tNG_update.class.php files to remove the tNG_fields line to just tNG as this was throwing errors with PHP5.3.  I also changed everything else per http://forums.adobe.com/message/2357443#2357443.
    This is the tNG execution trace (why the tNGUNKNOWN??):-
    tNGUNKNOWN.executeTransaction
    STARTER.Trigger_Default_Starter
    tNGUNKNOWN.doTransaction
    BEFORE.Trigger_Default_FormValidation
    BEFORE.Trigger_CheckForbiddenWords
    tNG_insert.prepareSQL
    tNGUNKNOWN.executeTransaction - execute sql
    tNG_insert.postExecuteSql
    AFTER.Trigger_ImageUploadtNGUNKNOWN.afterUpdateField - DefaultPic, P8280176.JPG*
    ERROR.Trigger_LinkTransactionstNGUNKNOWN.doTransaction
    tNGUNKNOWN.executeTransaction
    tNGUNKNOWN.getRecordset
    tNGUNKNOWN.getFakeRsArr
    tNG_insert.getLocalRecordset
    tNGUNKNOWN.getFakeRecordset
    tNGUNKNOWN.getFakeRecordset
    tNGUNKNOWN.getRecordset
    tNGUNKNOWN.getFakeRsArr
    tNG_insert.getLocalRecordset
    tNGUNKNOWN.getFakeRecordset
    tNGUNKNOWN.getFakeRecordset
    And is causing the following php warnings when executed:-
    Warning: Parameter 2 to Trigger_Default_FormValidation() expected to be a reference, value given /testing/includes/tng/tNG.class.php on line 228 Warning: preg_split(): No ending matching delimiter ']' found in /testing/includes/common/lib/image/KT_Image.class.php on line 2034 Warning: array_pop() expects parameter 1 to be array, boolean given in /testing/includes/common/lib/image/KT_Image.class.php on line 2035 Warning: implode(): Invalid arguments passed in /testing/includes/common/lib/image/KT_Image.class.php on line 203
    Is it the preg_split() that is causing the issues here??
    Any Ideas?

    Hello BoarderLineLtd
    I have noticed that on some servers when you upload the first image to the images folder using the ADDT image upload function the thumbnail directory that gets written to the images directory is written but the permissions are not set.
    If you use an FTP program such as CuteFTP or WSFTP to login to your web site you can manually set the permissions for the thumbnail directory.
    This should eliminate the permissions error.
    Stan Forrest
    Senior Web Developer
    Digital Magic Show

  • Photshop CS6 image resizing tool.

    Five time I have entered a support question but it does not seem to appear in the lists nor have I had a response, am I entering my request incorrectly?
    My request is:
    I have a PC using Windows 7. I have Photoshop CS6 which I have been using for some time. Very recently the image, image size tool has stopped working. I open the drop down window and the current size of my image is displayed. I then try and type the required changed size in the box but the box does not accept it. The size remains the same. I have un-installed and re-installed CS6 and put in all the latest updates. The first image I tried, it allowed me to change the size. The second image the resize tool would not allow any changes. We were back to where we started. Elsewhere on the support FAQs it was suggested such problems might be cured by deleting \adobe photo cs6 prefs.psp file. This I have done but still I cannot resize my images.
    Please can someone help me??

    If Photoshop has been working well for you then start acting strange the first thing that should come to you  mind is your Photoshop preferences.  Your Photoshop preferences are Photoshop setting made for your user ID for how you want Photoshop to behave.  Each user ID has there own set of Preference files. These are not installed or removed when you Install or uninstall Photoshop.   So if you un-install and re-install Photoshop your Photoshop preferences remain intact.  If the Problem you are having is caused by a corrupt Photoshop preference file.  You will still have that same problem. Did you try resetting your Photoshop preferences?
    Though the Image size dialog is simple many users do not really understand everything about image resizing.  Using a quick look at the image we see three section Top, Middle and bottom..
    Top section is basicly image file size how many pixels are there in the image.
    Middle Image Print Size.
    Bottom Image Resize Image Controls.
    To understand Image Resize you must start from the bottom.  In the bottom control section  Resample Image is the single control that governs  the whole resizing process.   When "Resample Image"  is NOT checked all other controls have no roll in the resize process they are grayed out as is the top file size section.  The file size will not change the pixel will not change. Note all that is grayed out in the above image.  All that can be change is the print size.  The middle section and all three sizes there are tied together as shown by the lines and link icon.  Change one size there and Photoshop will calculate the other two and display the proper values. All  thee setting in the center are sizes associated with length.  Width number uints, Height number uints. and Resolution number Pixel/unit. Resolution therefore is pixels size and pixels have an aspect ratio. Most image pixel these days are square 1:1 aspect ratio.  Photoshop support non square pixels but can only display image using square pixels display have. 
    So when Resample is not checked. The image has a  Width with a fixed number Pixel, a Height with a fixed number Pixels and Pixel aspect ratio. Setting any one print dimension will also set the other two dimensions.
    When resample is check the other controls in the bottom section become useable and so does the top file section.  Normally you should check Constraint Proportions link Width and Height so your image will not distort during the resize. When you resample an image you wind up with an entirely new image with a different number of pixels. Some image quality has been lost for you either through way some details you had or created some details you did not have.  The image quality will depend on the quality of the pixels you had and how well the interpolation method used worker with those pixels. IMO Adobe Bicubic Automatic is not a good general purpose method to it tend to add many artifacts to image that have been sharpened.
    In newer version of Photoshop CC and CC 2014 Adobe has redesigned the Image Size dialog adding a preview  image display. Made the dimension link icon the constrain proportion control when resample is checked. Also hid the scale style option under a gear icon in the upper right corner.

  • Image Resize Menu not available

    According to Mail Help, when I insert an image into an email, there is supposed to be an image resize menu in the lower right portion of the window and a message size indicator in the lower left of the window. Neither of these are appearing for me. I have tried attaching an image in a number of different ways with the "insert attachment at end of message" both on and off. Any ideas out there?

    I've got the same problem. It only occurred after upgrading to Leopard.
    Before it worked fine. (Leopard is for me not a success on this moment: my pages just stopped working, can't connect via bleutooth to my phone anymore using addressbook, eyeTV also stops at random and restarts are occurring often. I'm starting to get that 'trow this stupid thing out the window' feeling i had during my MS windows era.

Maybe you are looking for

  • Problem with HP Deskjet 2050 J510 series drivers

    So I have this wierd problem with my printer,the driver don't want to download themselves by using windows update(I use Windows7 64 bits) I searched on your site about this driver to install it manualy but it didn't worked.In devices and printers the

  • Photo size when scanning slides.

    I recently scanned 900 Kodachrome slides most of them 50 years old. Following the instructions from a Silverfast tech I set the DPI at 1200 and selected tiff files. I now realize these pictures are 100 Mb each--way too big! Especially after editing w

  • Lost 'mask' (using alt key) in exposure and sharpening?

    The black or white 'mask' by using the alt key in exposure adjustments AND the 'mask' while adjusting amount, detail and unsharp mask in sharpening is missing for me.  The only difference I can think of is that LR  is now on a new notebook (ASUS) and

  • Mail.app on Snow Leopard won't retrieve messages through POP3

    Hi. I've just recently upgraded to Snow Leopard. I managed to setup a Gmail IMAP account which worked fine. Then I tried to setup POP accounts of my GoDaddy hosting/email plan. The setup seemed to finish without problems but when I hit the "Get mail"

  • McAfee Security Scan Plus and Flash Player installer

    Hi. I went to update Flash Player earlier today by downloading the web installer from the website, but by mistake didn't uncheck the option to install McAfee Security Scan Plus with Flash. However, after comparing the two files that are downloaded wh