Is there any quick and dirty way to determine what something will look like

Hi,
Is there any way (rule of thumb) to determine what something will look like when printed.
for example.
I am doing a composite (hope this is the right word). It will have some people sitting at a table and I want to have another layer with another picture behind it.
I plan for the output to be fairly small (print size), say 4 x 5 or whatever.
Now, if I go to the internet and google (or mamma.com) and search for images (large) and it comes back to me, I will see pictures that are (for example) 800 x 526 pixels 367 kb, or 940 x 480 pixels 166 kb.
I would have to assume the 367 kb will print at better resolution, but if i liked the 166 kb picture better, is there a quick and dirty way to determine if it would print better (say 250 or 300 dpi or whatever) or not?
So, bottome line,
Assume my output picture will be 4 x 5 (and I want 300dpi (or is it ppi)
How do quickly look at google results and determing if they will print ok?
Bob

The closest to a one click fix in photoshop cs-cs5 is
Image>Adjustments>Shadow/Highlight or opening the
image through camera raw and using the recovery slider.
http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-765da.h tml
MTSTUNER

Similar Messages

  • Is there any better and faster way to copy...

    can anyone teel me any better and faster way to copy...
    InputStream in = null;
              OutputStream out = null;
              try {
                   in = new FileInputStream(src);
                   out = new FileOutputStream(dest);
                   byte[] buf = new byte[1024];
                   int len;
                   while ((len = in.read(buf)) > 0) {
                        out.write(buf, 0, len);
              }catch(Exception e){
    }

    Here's a small program as a sample and for testing. Just ran a few tests with a file of 1.5 MB (buffered slightly faster) and a file of 45 MB (NIO much faster) ...
    import java.io.*;
    import java.nio.channels.*;
    public class Copy {
         public static void main(String[] args) {
              if (args.length == 3) {
                   File from = new File(args[1]);
                   File to = new File(args[2]);
                   if (from.exists()) {
                        long start = System.currentTimeMillis();
                        try {
                             if (args[0].equals("nio")) {
                                  copyNIO(from,to);
                             else {
                                  copyBuffered(from,to);
                        catch (Exception ex) {
                             ex.printStackTrace();
                        System.out.println("Time: " + (System.currentTimeMillis() - start) + " ms");
         private static void copyBuffered(File from,File to) throws IOException {
              FileInputStream fis = null;
              FileOutputStream fos = null;
              try {
                   fis = new FileInputStream(from);
                   fos = new FileOutputStream(to);
                   BufferedInputStream in = new BufferedInputStream(fis);
                   BufferedOutputStream out = new BufferedOutputStream(fos);
                   byte[] buf = new byte[8192];
                   int r = 0;
                   while ((r = in.read(buf)) > 0) {
                        out.write(buf,0,r);
              finally {
                   if (fis != null) {
                        try {
                             fis.close();
                        catch (Exception ex) {}
                   if (fos != null) {
                        try {
                             fos.close();
                        catch (Exception ex) {}
         private static void copyNIO(File from,File to) throws IOException {
                   FileInputStream fis = null;
                   FileOutputStream fos = null;
                   try {
                        fis = new FileInputStream(from);
                        fos = new FileOutputStream(to);
                        FileChannel chin = fis.getChannel();
                        FileChannel chout = fos.getChannel();
                        long size = from.length();
                        long total = 0;
                        while (total < size) {
                             total += chin.transferTo(0,size,chout);
                   finally {
                        if (fis != null) {
                             try {
                                  fis.close();
                             catch (Exception ex) {}
                        if (fos != null) {
                             try {
                                  fos.close();
                             catch (Exception ex) {}
    }

  • Is There A Quick And Easy Way Of Avoiding "Stepped" Edges (Aliasing)?

    I am using Compresor 3.0.3 to encode HDV projects to SD DVD.
    I originally tried Exporting QuickTime Movies from FCP but discovered there was terrible shimmering on straight edges and severe judder when panning or if someone walked across the frame.
    Using the "DVD Best Quality 90 minutes" setting smoothed out all the above problems.
    Unfortunately it left noticeable stepping or aliasing on diagonal sharp lines !
    This is much less of a problem than the judder but if possible I would like to get rid of it.
    I have read up about the Bonsai method, but the processing times involved are enormous and not warranted by the slightness of the problem.
    I have also seen an anti-alias slider in Compressor but when I used it the processing slowed almost to a halt. Maybe I was operating it incorrectly ?
    Is there a quick way to get rid of the stepped edges, or is it something everyone has to live with when converting HDV to SD DVD ?
    Ian.

    Yes it's all PAL Kyle. The problem isn't just mine though. It seems to be par for the course. From what I have read, the Bonsai method was devised to overcome it but the actual problem is really so slight, that for amateur work the cure is a bit over the top.
    http://www3.telus.net/bonsai/Step-by-Step.html
    It's too darned hot Luca ! Especially at night.
    Your process seems a bit like the Bonsai method and I'm beginning to think that I might be exaggerating the problem in my mind.
    The aggravating thing is that when I did a straight Export>To QT Movie, although I got terrible judder, there was almost no sign of aliasing ......... which is why I felt there should be a simple solution.
    I'll just have to pray that they bring the prices of Blu-ray down rapidly, so there will be no need to use standard def.
    I am going to experiment with shooting 25PF tomorrow to see if that helps ........ or not.
    Ian.

  • ThreadPoolExecutor and using priority to determine what threads will run

    Hello,
    I am fairly new to Java, so I apologize if there is an obvious answer.
    The ThreadPoolExecutor is a great class for thread management. What I would like to do is have a priority scheme that would determine what thread should be run next. For example, let's say I have 100 threads and a limit of 20 threads. Each thread that is executed should have a mechanism to indicate a priority. When a thread becomes available in the pool, the priority value should be checked to determine which thread to run. This would allow me to get important tasks completed quickly. Right now it appears that there is a FIFO order to threads. I tried wrapping the runnable object in a Thread, but that didn't seem to have an effect.
    I am using a Fixed thread Pool:
          loThreadPoolExecutor = (ThreadPoolExecutor) Executors.newFixedThreadPool(MAXTHREADS); (MAXTHREADS=20)I have tried creating a PriorityBlockingQueue with a comparator that compares the thread priority, but nothing seems to work.
      public Constructor() {
    loThreadPoolExecutor = new ThreadPoolExecutor(MAXTHREADS,MAXTHREADS*2,0,TimeUnit.SECONDS,new PriorityBlockingQueue(11,new PrvComparator()));
        private class PrvComparator implements Comparator  {
              public int compare(Object o1, Object o2) {
                   // TODO Auto-generated method stub
                   Thread t1 = (Thread) o1;
                   Thread t2 = (Thread) o2;
                   System.out.println("P1="+t1.getPriority()+ " P2="+t2.getPriority());
                   if (t1.getPriority()<t2.getPriority()) return -1;
                   if (t1.getPriority()>t2.getPriority()) return 1;
                   else return 0;
                   //PriorityBlockingQueue
              }I would appreciate any help.

    What are you trying to prioritize? The order on which tasks come off the work queue, or the order in which they get completed?
    Doing the first is simple but restricted. Your tasks are Comparable and define their own priority and you use a PriorityBlockingQueue. But you are restricted to using the execute() method with Runnable's that are Comparable. submit() will wrap the task in a FutureTask that isn't Comparable and so will cause a ClassCastException.
    Doing the second is difficult. Even if your threads have different priorities then don't queue for tasks in priority order, so the thread priority when taking a task is irrelevant. You could change the thread priority based on the priority of the task once it starts executing. But Thread priorities are only a hint to the scheduler that you think Thread A is more important than Thread B. On some platforms priorities will have little observable effects - whereas on other it can be drastic if you use priorities that are too high or too low. The mapping from Java priority to OS thread priority is platform specific. See for example http://java.sun.com/javase/6/docs/technotes/guides/vm/thread-priorities.html

  • Is there a quick and easy way to reorder de-interleaved data?

    I am collecting 5 channels of data through a DMA FIFO by interleaving, then recording to a TDMS file. When I check it, it's in mostly good order, but there are certain points where the channels get switched. For example, the Channel order when I open the file is 1 2 3 4 5, as expected, for several thousand elements. But at some point, it gets shifted to 4 5 1 2 3, and later 2 3 4 5 1. Left-to-right, they are always ordered correctly, so it's easy to reorder them, but very tedious with millions of elements. I have attached some sample data. I'm looking for A) a way to prevent this or B) some kind of sorting tool or script in LabVIEW or DIAdem that may sort it for me. I'll work on a sorting script in the meantime. 
    I am using LabVIEW 2011 Real-time and FPGA 2011, and the standard TDMS open and write functions. I also have access to DIAdem. 
    Solved!
    Go to Solution.
    Attachments:
    TDMS import-check analog data.xlsx ‏3807 KB

    Sorry for the slow response - 
    I've looked at everything, and so far I can't identify the problem. I believe my code is consistent with the producer-consumer architecture. 
    On the real-time side, I am reading data from the FIFO and writing to the TDMS in the same loop.
    On the FPGA side, analog channels are read, converted to the same fixed-point format with a time stamp in a single-cycle timed loop, and then ordered into the FIFO in a for loop. I have posted the relevant parts below.
    I am using C-series modules in a CompactRIO.
    Attachments:
    top-fpga loop-bottom-rt loop.png ‏26 KB

  • Always on : Is there any command or other way which tells who and when replica got failover or failback to other replica?

    Is there any command or other way which tells who and when replica got failover or failback to other replica?
    Rahul

    By Monitoring of Availability Groups:
    Monitoring of Availability Groups (SQL Server)

  • I recently purchased Elements 13 for Mac-OS and cannot download N-OS and cannot download NEF-RAW files taken on my Nikon D5500. The model is not listed among those supported by Elements, but the D5300 is, which is nearly identical. Is there any quick fix?

    I recently purchased Elements 13 for Mac-OS and cannot download N-OS and cannot download NEF-RAW files taken on my Nikon D5500. The model is not listed among those supported by Elements, but the D5300 is, which is nearly identical. Is there any quick fix?

    What is N-OS?
    For the camera raw problem, every new camera has its own raw format and ACR must be updated to include it. That hasn't happened yet for the D5500, so you'll just have to use the Nikon software till Adobe gets the info and releases an updated version of ACR. It's not unusual to be in your situation if you buy a camera model that's only been out a month. You just have to wait a bit.

  • Quick and Dirty "Chapters" with DVD Studio Pro?

    Ok, so here is my workflow:
    I have a project in FCP.  It's one large 60 minute file broken into segments from start/stop in my timeline.
    - I am going to export this to a quicktime reference file (uncompressed, 10bit)
    - Then use Compressor to turn the uncompressed movie file into MPG and AC3 video and audio format
    - Import the mpg and the ac3 into DVD Studio Pro as a track, set to play on dvd start
    - then burn the DVD
    My question is, is there any quick way to lay down chapter markers where the segments are so that when I put the DVD into a regular DVD player I can just skip to the next clip with the DVD remote?  (My source is one large 60 minute file with about 30 start/stop points in FCP)
    I just want to be able to scan the disc in the DVD player with the remote control without having to use the "search/speed" buttons to manually scan all the footage.
    If this is a noob question, and I am missing something, please explain.
    - I DO know how to add chapter markers in Compressor (and FCP), but am not sure if that translates to DVD studio in the output file, and I'd really like to do it in FCP because the segment start/stop points are already in my timeline.
    Thanks!

    1st, a QT reference movie is the same compression as the original files, not uncompressed.  Once you're workign with a compression scheme (HDV, DVCPRO-HD, NTSC-DV) going to uncompressed does absolutly nothing for you, it does not add quality, just gives you larger than nessisary file sizes.  If you export, use either a QT reference movie (there is no choice of compression scheme), or a ProRes QT.
    If you want the best quality, go directly from the FCP Timeline to Compressor, don't export anything.
    If your chapter markers in FCP are Chapter markers, go directly to Compressor, use one of the DVD preset folders, the chapter markers will translate into DVD SP.  You can than use DVD SP's automated chapter menu function to get things done fast, create Stories for more complex functioning, etc.
    This is old, FCP/Compressor parts may be outdated now, but the DVD SP part is still valid.  Shows that functioning I'm talking about.
    http://bbalser.com/tutorials_long/DVDSP/DVDSP_Full_Orig.mov.zip

  • HT201342 Are there any setting or some way to show notifications for new email without open Apple Mail app ?

    Are there any setting or some way to show notifications for new email without open Apple Mail app ?
    You know , I am an OCD . I alway's close my Mail app and miss many important new emails .

    What I do is open the Mail.app, then click the red traffic light (upper left corner of the main Mail.app window) to close that window. The app itself will remain running and you will get updates - this helps keep the desktop tidy while while the mail app remains running. When an update is received, simply click the either the mail icon in your dock or go to the Mail.app menu and click Window > Message Viewer.

  • Is there any quick buttons setup for going back or forward

    Is there any quick buttons setup for going back or forward for navigating on a website. I would like to press a button to go back or forward while surfing different websites.

    Do you mean the back and forward history of a tab or buttons on a web page to go to the next and previous page?
    * [[Keyboard shortcuts]]
    * [[Mouse shortcuts]]
    *NextPlease!: https://addons.mozilla.org/firefox/addon/390
    There are other things that need attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r45
    # Next Generation Java Plug-in 1.6.0_14 for Mozilla browsers
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Updating 3GS from 3.1.2 to 6.1.3 taking way too long. Is there a better and faster way?

    How long does it take to update an original 3GS to 6.1.3? I followed the iTune instructions and it has been updating for hours already. Is there a better and faster way to do this?

    SO if I want to represent the London Underground
    network as a Graph how would I be able to do it?By writing classes of your own or using some one else's. I don't think that the collections framework has out-of-the-box support for graphs.... So try google first.
    The implementation details depend on the API you are going to use, of course...
    from A to B 5 min
    from B to C 4 min
    from A to C 9 min
    this information is redundant, the third info should be omitted. <nit-picking>
    No it's not - What if there's a special, more direct route from A to C? Also, getting from A to B to C will usually take more time than the time from A to B plus the time from B to C. The trains have to stop at B, don't they?
    </nit-picking>
    Maybe this approach is more complex, but it solves the problem Have I understood correctly - isn't what you describe just another way to implement a graph?

  • Quick and Dirty Tree Mapping

    Hi, i'm trying to do a quick and simple mapping for categories.
    Something like...
    Vector v = new Vector();
    v = PatriotmemDB.getFAQCategories();
    FAQCategoryObj catObj = null;
    String catname = null;
    int catid = 0;
    int parent = 0;
    int counter = 0;
    int prev = 0;
    Vector catTree = new Vector();
    for(int j=0;j<v.size();j++) {
    catObj = (FAQCategoryObj)v.elementAt(j);
    parent = catObj.getCatID();
    if(parent == counter) {
    if(counter == prev) {
    catTree.elementAt(counter).add(catObj);
    } else {
    catTree.elementAt(counter) = new Vector();
    catTree.elementAt(counter).add(catObj);
    } else {
    counter++;
    I know this will give an error but basically break out each parent in separate Vectors so that when i loop through them i can test and show in a select list. My table retuns below...
    categoryid catname catdesc imglink order parent
    1 DRAM DRAM NULL 0 0
    2 Solid State Drives Solid State Drives NULL 0 0
    3 USB Flash Drives USB Flash Drives NULL 0 0
    4 Peripherals Peripherals NULL 0 0
    5 Torqx Torqx NULL 0 2
    6 Zephyr Zephyr NULL 0 2
    7 Xporter XT Boost Xporter XT Boost NULL 0 3
    8 Xporter Razzo Xporter Razzo NULL 0 3
    Where the parent is the last column.
    Thanks for your help

    OK, so you have a tree, and you want to product these kind of weird vector slices of the tree, presumably as input to something else.
    How is the tree implemented? It looks like a vector of some class, in which the tree structure is implicit in the relationship of some fields of the class, but not an actual tree (composed of nodes, with directed edges between the nodes, no cycles, and a single node is identified as root). Right?
    If so, I can imagine one way to do it would be to create a Map<Integer, Vector<TheClass>> Loop through the vector, looking at each class, get the parent reference (which I take to be an integer from your example), and then look up in the map the vector identified for that integer. (If it doesn't exist, create it and add it to the map.) Then add the given class to that vector. When you're done, take the values set from the map.
    If you have an actual explicit formal tree, then I'd suggest writing a simple recursive function to span it.
    By the way, Vector is kind of long in the tooth. The more canonical List implementations these days are ArrayList or LinkedList.

  • Is there any rules and regulations to do SOA projects ?

    Hi All,
    1. Is there any rules and regulations to do SOA projects thro' XI?
    2. Is it necessary to use BPM for SOA projects?
    Regards
    Sara
    Points will be rewarded for the helpful answers

    HI,
    See the below links
    /people/kevin.liu/blog/2005/10/17/esa-soa-es
    EAI:
    http://en.wikipedia.org/wiki/Enterprise_Application_Integration
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e01bd5e9-1056-2910-00a6-cad748999126
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6d19c8ee-0c01-0010-619d-92af980436d7
    SOA vs ESA
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e1a61c36-0301-0010-06be-d34e2f379a65
    SOA - http://en.wikipedia.org/wiki/Service-oriented_architecture &
    ESA - /people/kevin.liu/blog/2005/10/17/esa-soa-es
    . Why SOA
    /people/maxim.efimov2/blog/2006/08/22/the-roadmap-to-enterprise-soa-begins-with-150147-why148
    SOA Foundations
    /people/natty.gur/blog/2007/02/27/three-major-foundations-for-soa
    2. SOA with SAP
    /people/oleg.figlin/blog/2006/06/20/sap-discovery-system-for-enterprise-soa--part-1
    /people/oleg.figlin/blog/2006/06/26/sap-discovery-system-for-enterprise-soa--part-2
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c1cb4b2c-0e01-0010-c99e-c272197d970f
    3.XI and SOA
    SAP XI in SOA
    4. /people/community.user/blog/2007/01/30/enterprise-soa-explorations-fragments
    /people/sindhu.gangadharan/blog/2006/06/19/it-scenario-enabling-enterprise-services-with-sap-netweaver
    5. /people/abdulla.fawzi/blog/2007/01/03/enterprise-soa-based-innovations-and-its-benefits
    EAI & EBI
    EAI
    EAI and EDI
    Also see this document on this:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/13926f23-0a01-0010-149c-c1170e7a25db
    Regards
    Chilla

  • HT201269 Is there a right, and wrong way to plug the lightning connector into the phone?

    The lightning connector dosen't want to plug into the slot and I don't want to force it, ... is there a right and wrong way to do this bisic and simple step?  Thanks

    No, it is a reversible plug. Either way is fine.
    Just make sure you plug it in straight until it "clicks" into place. It may take a bit of force if new, but check there's nothing in the port first.

  • Quick and easy way to learn to use Oracle Spatial?

    Could anyone recommend a quick and easy way to learn to use Oracle Spatial?

    Depends on your style.
    Reminds me of a story a contractor to an IT department I worked in once told me.
    He used to work in Silicon Valley in the '70s and told a story of a company that
    hired a particular programmer who was brilliant but unstable. They used to set
    up a room with a VT100 and a bottle of Tequila. The programmer would arrive
    and set to work. As the Tequila emptied it was replaced. At some point over
    the following days or weeks a scream would be heard from the room, followed
    by a crash as the VT100 went through the window and the programmer disappeared.
    They would replace the window, the VT100, the Tequila and wait till he came back
    from "walkabout".
    "Extreme Programming" '70s tyle!
    OH&S would never allow this nowadays! That, plus Prozac means these sorts
    of programmers are probably very rare!
    Cheers!
    S.

Maybe you are looking for

  • How to pass the values from the Wb Dynpro Application to the SAP Backend ?

    Hi All, Good morning.., I have scenario like: I want to pass the values from the web dynpro appication to the SAP Back end R/3 Table. IN backend the RFC is writtn to accept the structure input from the Webdynpro. Upto know I imported the correspondin

  • Safari-Java-Webinar

    When trying to join a webinar I get an error message that Safari can not find Java. I deleted Java and reloaded it. Chrome does not have a problem accessing Java. I am on a PC with windows Vista

  • CRM Middleware issue with Kanji Characters

    When customers are replicated from ECC to CRM using middleware, the name for some of the customers which are stored in Kanji (Japanese characters) are flowing in as ###### instead of the actual Kanji characters. However the address fields are flowing

  • Trouble with Standalone Flash 9 for Mac OSX

    I cant get the flashplayer 9 standalone player to download correctly for my mac osx10.4 when it downloads and unzips it says, "You cannot open the application "sa_flashplayer_9" because it may be damaged or incomplete. Ive attempted reinstalling it a

  • "Allocating memory"

    Hey all, I would assume this is the first indication that the hard drive in the iPod has failed. Basically though, my Ipod Classic gives me the "Connect to iTunes to restore" screen, so I do, and while restoring, it stops and says it's unable to do s