New Image from edited Image on Screen

hi,
i want to make an image on screen then edit it and after that save the resulting edited image and display it saperately???
do anyone have any idea that after editing how will i save the new image i get....
thanks

http://forum.java.sun.com/thread.jspa?threadID=762729&messageID=4509503
problem solved :)

Similar Messages

  • Need several forms to show the same image from an image library

    Hi
    I have several InfoPath forms with a logo at the top of the form. I would like to have the logo linked to an image file so if I have to change the logo, I can just overwrite the file that's sitting in a SharePoint image library without having to edit and
    re-publish 30 forms.
    I can get the file placed in the InfoPath form, but when I publish the form, the image looks correct but the publish process embeds the image. If I view the properties of the image on the form in SharePoint, the URL isn't the URL to the image in the image
    library. It's a long URL that looks hashed.
    So I went back to InfoPath and tried Insert > Picture > pasted the URL to the image in the image library > then clicked the down-arrow on the Insert button and chose Link to File. Now when I publish it, I get an error that says:
    Linked images are not supported by InfoPath Forms Services. To fix this problem, make the image a part of the form template. (Then it has a link to the image from the image library.)
    Is it possible to link to an image file so if the image file is updated the forms will see the new image?
    Thanks in advance,
    Sonya

    Thanks for the reply. So if I understand the info on the links above, to simply display an image that's not embedded in my InfoPath form, I have to create a Rich Text Box in the form, add a Receive data connection to a Picture Library on SharePoint, add
    a Loading Event to the InfoPath form template and edit/paste C# code (because I only want to display one image from the image library and not a repeating table like the example in the article above), then edit and add more blocks of C# code to an "addImageToTable"
    function, save/build/publish the form, then perform an "administrator-approved form template deployment" on the server? lol, all of that seems excessive just to display a non-embedded image. I'll need to decide if I want to fool with that since the logos don't
    change very often.

  • Can i create a single image from multiple images in lightroom?

    Can i create a single image from multiple images in lightroom?

    Like a panorama, a composite or focus stack? Have you tried the Lightroom forum?
    Photoshop Lightroom

  • OSX 10.6.8 Firefox 30.0 can't open images from google image search results I can't left click on a google image search result to open the image.

    OSX 10.6.8 Firefox 30.0 can't open images from google image search results
    I can't left click on a google image search resultt to open the image. This works fine on Safari so is not a mouse issue. When I tried to ask this question in Firefox when I left clicked on the ASK THIS button nothing happened
    Originally posted in OS section - Sorry

    Do you otherwise have problems with the mouse in Firefox?
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Creating an Image from whats already on screen?

    http://carroll1.cc.edu/~tpatters/Scribble.html
    Above is the link to an applet I've been writing for a few days. I'm fairly new to Java and am using this applet to teach myself concepts as I dig them up. Right now when the page is moved, or the application is resized, or anything is drawn over it I lose the image that has been drawn. I'm trying to correct this by creating an offscreen image duplicating what is on screen in mousePressed. How do I grab what has already been drawn as an image? I've tried making it so it initially draws to an offscreen image and drawing that image in mouseReleased, but that doesn't let me see what is being drawn as it is happening. If I draw offscreen and update every iteration is runs horribly slow. I've also tried drawing offscreen and onscreen at the same time, but that too slows everything down.
    Here is the source code, I've been tinkering around all day so it is kinda messy and some things are commented out...
    import javax.swing.border.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.StringTokenizer;
    public class TPScribble extends JApplet implements AdjustmentListener, ActionListener
         private JLabel lblRed = new JLabel("Red");
         private JLabel lblGreen = new JLabel("Green");
         private JLabel lblBlue = new JLabel("Blue");
         private JScrollBar red,green,blue,size;
         private JButton whiteBack= new JButton("White");
         private JButton currentBack= new JButton("Current Color");
         private JButton info= new JButton("Info");
         private JButton psychoColors= new JButton("Auto-Rainbow");
         private JButton gradient= new JButton("Set Gradient");
         private JButton drawG=new JButton("Draw Gradient");
         private JButton redraw=new JButton("Redraw");
         private int r,gr,b, intsize=16, undoCounter=0;
         private TitledBorder titleBorder = new TitledBorder("Color Chooser");
         private Color color = new Color(128,128,128);
         boolean cycle = false;
         boolean setGrad = false;
         private int cycleRed, cycleGreen, cycleBlue;
         private int[] gradientStart = new int[3];
         private int[] gradientEnd = new int[3];
         private Graphics offscreen;
         //private Dimension dimension = new Dimension();
         private Image image;
         private Image[] undoImage = new Image[5];
         ScribblePanel scribblePanel = new ScribblePanel();
         Brush brush = new Brush();
    public static void main(String[] args)
    JFrame frame = new JFrame("TP Scribble");
    TPScribble applet = new TPScribble();
    frame.getContentPane().add(applet, BorderLayout.CENTER);
    applet.init();
    applet.start();
    frame.setSize(800, 640);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    public void adjustmentValueChanged(AdjustmentEvent e)
         r=red.getValue();
         cycleRed=r;
         gr=green.getValue();
         cycleGreen=gr;
         b=blue.getValue();
         cycleBlue=b;
         intsize=size.getValue();
         lblRed.setText("Red ("+(r+1)+")");
         lblGreen.setText("Green ("+(gr+1)+")");
         lblBlue.setText("Blue ("+(b+1)+")");
         color = new Color(r,gr,b);
         cycle=false;
         brush.updateBrush(color,intsize);
    public void actionPerformed(ActionEvent e)
         if (e.getSource()==whiteBack)
              scribblePanel.setBackColor(Color.white);
         else if (e.getSource() == currentBack)
              scribblePanel.setBackColor(color);
         else if (e.getSource() == info)
              JOptionPane.showMessageDialog(null, "Created by Thom Patterson\n\nLeft Click - Paint Brush\nRight Click - Draw Line\nShift + Left Click - Draw Line","Information",JOptionPane.INFORMATION_MESSAGE);
         else if (e.getSource() == psychoColors)
              int choice = JOptionPane.showConfirmDialog(null, "This will automatically cycle your\ncolors until a slider is moved\n\nProceed?", "Info",JOptionPane.YES_NO_OPTION);
              if (choice==0)
                   cycle=true;
         else if (e.getSource() == gradient)
         {boolean valid = false;
               boolean inside = true;
               do
               inside=true;
               String startGradient = JOptionPane.showInputDialog("Enter Starting Color as an r,g,b value\n\nColor Values lie between 0 and 255\n\nExample: 120,255,17");
               String endGradient = JOptionPane.showInputDialog("Enter Ending Color as an r,g,b value\n\nColor Values lie between 0 and 255\n\nExample: 120,255,17");
               StringTokenizer startToken = new StringTokenizer(startGradient, ",");
               StringTokenizer endToken = new StringTokenizer(endGradient, ",");
               for (int c=0; c<3 ; c++)
                    gradientStart[c]=Integer.parseInt(startToken.nextToken());
              for (int c=0; c<3 ; c++)
                   gradientEnd[c]=Integer.parseInt(endToken.nextToken());
              for (int c=0; c<3; c++)
                   if (gradientStart[c]>255 || gradientStart[c]<0 || gradientEnd[c]>255 || gradientEnd[c]<0)
                   JOptionPane.showMessageDialog(null, "Your numbers were invalid, try again","Error",JOptionPane.INFORMATION_MESSAGE);
                        inside=false;
              if (inside==true)
                   valid=true;     
                   setGrad=true;
              while (valid==false);
         else if (e.getSource()==drawG)
              if (setGrad == false)
                   JOptionPane.showMessageDialog(null, "Please set a Gradient first","Error",JOptionPane.INFORMATION_MESSAGE);
              else if (setGrad == true)
                   scribblePanel.drawGradient(gradientStart, gradientEnd);
         else if (e.getSource()==redraw)
              //scribblePanel.update();
    public void init()
         red = new JScrollBar(0,128,1,0,255);
         green = new JScrollBar(0,128,1,0,255);
         blue = new JScrollBar(0,128,1,0,255);
         size = new JScrollBar(1,16,1,1,50);
         JPanel p1 = new JPanel();
         p1.setLayout(new GridLayout(1,3));
         p1.setBorder(titleBorder);
         JPanel p2 = new JPanel();
         p2.setLayout(new BorderLayout());
         p2.add(new JLabel("Size"), BorderLayout.NORTH);
         p2.add(size, BorderLayout.CENTER);
         JPanel p3 = new JPanel();
         p3.add(info);
         p3.add(whiteBack);
         p3.add(currentBack);
         p3.add(gradient);
         p3.add(drawG);
         p3.add(redraw);
         JPanel p4 = new JPanel();
         p4.setLayout(new GridLayout(4,1));
         p4.add(lblRed);
         p4.add(lblGreen);     
         p4.add(lblBlue);
         p4.add(new JLabel("Cycling Colors"));
         JPanel p5 = new JPanel();
         p5.setLayout(new GridLayout(4,1));
         p5.add(red);
         p5.add(green);
         p5.add(blue);
         p5.add(psychoColors);
         p1.add(p4);
         p1.add(brush);
         p1.add(p5);
         red.addAdjustmentListener(this);
         green.addAdjustmentListener(this);
         blue.addAdjustmentListener(this);
         size.addAdjustmentListener(this);
         whiteBack.addActionListener(this);
         currentBack.addActionListener(this);
         info.addActionListener(this);
         psychoColors.addActionListener(this);
         gradient.addActionListener(this);
         drawG.addActionListener(this);
         redraw.addActionListener(this);
         getContentPane().add(p1, BorderLayout.SOUTH);
         getContentPane().add(p2, BorderLayout.EAST);
         getContentPane().add(p3, BorderLayout.NORTH);
         getContentPane().add(scribblePanel, BorderLayout.CENTER);
    class ScribblePanel extends JPanel implements MouseListener, MouseMotionListener
    {      private Point lineStart = new Point(0, 0);
         private Graphics z,gg;
         public ScribblePanel()
              addMouseListener(this);
              addMouseMotionListener(this);
         public void setBackColor(Color xcolor)
              z = getGraphics();
              z.setColor(xcolor);
              z.fillRect(0,0,getWidth(),getHeight());
              z.dispose();
         public void drawGradient(int[] starter, int[] ender)
              setBackColor(Color.white);
              int delta = (int)(getWidth()/255);
              z=getGraphics();
              cycleRed=ender[0];
              cycleGreen=ender[1];
              cycleBlue=ender[2];
              r=starter[0];
              gr=starter[1];
              b=starter[2];
              for (int c=0;c<getWidth();c+=delta)
                   color = new Color(r,gr,b);
                   z.setColor(color);
                   z.fillRect(c,0,delta,getHeight());
                   if (r==cycleRed)
                   else if (r<cycleRed)
                   {r++;}
                   else if (r>cycleRed)
                   {r--;}
                   if (gr==cycleGreen)
                   else if (gr<cycleGreen)
                   {gr++;}
                   else if (gr>cycleGreen)
                   {gr--;}
                   if (b==cycleBlue)
                   else if (b<cycleBlue)
                   {b++;}
                   else if (b>cycleBlue)
                   {b--;}
              z.dispose();
         public void mouseClicked(MouseEvent e)
              image = createImage(getWidth(), getHeight());
              z = image.getGraphics();
              gg=getGraphics();
              if (cycle==true)
                   cycleColor();
              if (e.isMetaDown()|| e.isShiftDown())
                   z.setColor(color);
                   z.drawLine(lineStart.x, lineStart.y, e.getX(), e.getY());
              else
                   z.setColor(color);
                   z.fillOval(e.getX() - (intsize/2), e.getY() - (intsize/2), intsize, intsize);
              lineStart.move(e.getX(), e.getY());
              gg.drawImage(image,0,0,this);
              image = createImage(getWidth(), getHeight());
              offscreen[undoCounter]=image.getGraphics();
              offscreen[undoCounter].fillOval(0,0,100,255);
              undoCounter++;
              if (undoCounter == 5)
                   undoCounter=0;*/
              gg.dispose();
              z.dispose();
         public void mouseEntered(MouseEvent e)
         public void mouseExited(MouseEvent e)
         public void mouseReleased(MouseEvent e)
         public void mousePressed(MouseEvent e)//maybe add undo here...
              lineStart.move(e.getX(), e.getY());
         public void mouseDragged(MouseEvent e)
              //image = createImage(getWidth(), getHeight());
              //z = image.getGraphics();
              gg=getGraphics();
              if (cycle==true)
                   cycleColor();
              if (e.isMetaDown() || e.isShiftDown())
                   // z.setColor(color);
                   //z.drawLine(lineStart.x, lineStart.y, e.getX(), e.getY());
                   gg.setColor(color);
                   gg.drawLine(lineStart.x, lineStart.y, e.getX(), e.getY());
              else
                   //z.setColor(color);
                   //z.fillOval(e.getX() - (intsize/2), e.getY() - (intsize/2), intsize, intsize);
                   gg.setColor(color);
                   gg.fillOval(e.getX() - (intsize/2), e.getY() - (intsize/2), intsize, intsize);
              lineStart.move(e.getX(), e.getY());
              //z.drawImage(undoImage[0],0,0,this);
              //gg.drawImage(image,0,0,this);
              gg.dispose();
              //z.dispose();
         public void paintComponent(Graphics g)
              if (image == null)
              else
                   g.drawImage(image,0,0,this);
         public void update(Graphics g)
              repaint();
         public void cycleColor()
              if (r==cycleRed && gr==cycleGreen && b==cycleBlue)
                   cycleRed=(int)(Math.random()*255);
                   cycleGreen=(int)(Math.random()*255);
                   cycleBlue=(int)(Math.random()*255);
              if (r==cycleRed)
              else if (r<cycleRed)
              {r++;}
              else if (r>cycleRed)
              {r--;}
              if (gr==cycleGreen)
              else if (gr<cycleGreen)
              {gr++;}
              else if (gr>cycleGreen)
              {gr--;}
              if (b==cycleBlue)
              else if (b<cycleBlue)
              {b++;}
              else if (b>cycleBlue)
              {b--;}
              color = new Color(r,gr,b);
              brush.updateBrush(color, intsize);
              lblRed.setText("Red ("+(r+1)+")");
              lblGreen.setText("Green ("+(gr+1)+")");
              lblBlue.setText("Blue ("+(b+1)+")");
         public void mouseMoved(MouseEvent e)
    class Brush extends JPanel
    private Graphics l;
         public Brush()
         public void updateBrush(Color bcolor, int bintsize)
              l=getGraphics();
              l.setColor(getBackground());
              l.fillRect(0,0,getWidth(),getHeight());
              l.setColor(bcolor);
              l.fillOval(getWidth()/2 - (bintsize/2),getHeight()/2 - (bintsize/2), bintsize, bintsize);
              l.dispose();

    I made a similar app myself, and here is a snippet from inside the draw method of my custom shape        // draws only last segment if in the process of creating the shape
            if (perm) {
                for (int ndx = 2; ndx < numCoords; ndx += 2) {
                    g2.draw(new Line2D.Float(pointCoords[ndx - 2],
                     pointCoords[ndx - 1], pointCoords[ndx], pointCoords[ndx + 1]));
            else {
                g2.draw(new Line2D.Float(pointCoords[numCoords - 4],
                 pointCoords[numCoords - 3], pointCoords[numCoords - 2],
                 pointCoords[numCoords - 1]));
            }as you can see, I only draw the last little segment while the user is drawing the shape (this keeps it fast), but when it is completed, the draw method will draw the entire thing. By calling the draw method both on mouseDragged and in the paintComponent of the canvas, the desired effect is achieved.

  • New Catalogue from selected images in other Catalogues

    Hi Guys,
    I have several Catalogues in Lightroom 2.5. I would like to select several images from each Catalogue and put them into a new Catalogue.
    The reason – In each Catalogue I have flagged the images that I want to print. I want to create a new Catalogue with only the flagged images from the other Catalogues in order to do a contact print or multi images on one sheet of paper.
    I know that I could create one Master Catalogue, select the flagged images and then print but I would like to just have a Print Catalogue that I could add images to, from other Catalogues.
    Its there a way to do this ?
    Thanks for your help.
    John

    In each catalogue, select the images and select File > Export as Catalogue. When you're finished, create a new catalogue, and then use File > Import as Catalog for each of the exported ones.
    When you're finished doing all this, do put some time aside to think what else you could have done with all the time you've just used up. With a single master catalogue, you would already have been admiring your prints and having a coffee, with your feet up on the desk too.
    Also see this thread http://www.lightroomforums.net/index.php?topic=8306.0
    John

  • How to automatically remove the wiki page's images from the Images library , when a wiki page is deleted

    I have noted the following strange behavior inside my Publishing enterprise wiki site collection. Now by default when I create a new wiki page and I add Pictures to it, the pictures will be saved under the “Images” library and will be inside a unique folder
    that have its name similar to the page name.
    But when users delete the picture from the wiki page or they delete the whole wiki page, then the related folder inside the “Images” library will not be removed. So can anyone advice if there is a way to automatically remove the page’s pictures
    folder from the Images library when the page is deleted? as currently i might end up having many pictures inside the Images library which are not linked to a wiki page, and they will waste my server desk space...

    I think, not sure, there's no out-of-the-box solution in SharePoint for this problem. So I can only think of custom solution:
    In event Receiver, ItemDeleting, you can delete images. The only downside is if some other pages are referring the images..... you need to check somehow which is quite time-consuming operations if you have thousand of pages in wiki library
    A timer job, that will run periodically, every day or week, and clean all unused images. 
    Hide the default delete button and add your own. And then using your own custom layout page, show a 'configuration dialog' to user if they want to delete both page and images.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com
    Please do not tell me this is not supported out of the ox ,,,,, i that i should handle this process by myself !!! and SharePoint does not support this feature .... this is another  problem i should include in my list .....

  • Parsing the URL of all images from Google Images html file

    Hello all,
    I am trying to pull all the image URL's from a html file. I have used URLConnection class to copy the follwing link
    http://images.google.com/images?q=tiger&gbv=2&svnum=10&hl=en&start=21&sa=N&ndsp=21
    into a html file in my local drive. Now this file has the URL's of the images that have been displayed by google images (searched for: tiger). Now I need to fetch up those image URL's.
    any ideas???

    Thank you for the reply.
    I am beginner. Can you please eloborate the explanation or do u have some code examples.
    thank you very much

  • How do I remove custom images from Windows 8 lock screen

    I have a personal photos on the lock screen and account picture that I want to delete but cannot figure out how to remove them. I have read through dozens of solutions and there is no option to delete them I have deleted all skydrive data,
    removed my computer from the skydrive sync options, and looked in the c:\windows\Web\screen folder but still have no solution.
    How do I get rid of them?

    Hi,
    For the issue, the current user account picture (tile image) is stored in the hidden folder below.
    C:\Users\Public\Public Account Pictures\S-1-5-21.......(GUID for user account)
    The recent user account pictures used for your account are stored in the hidden folder below.
    C:\Users\(user-name)\AppData\Roaming\Microsoft\Windows\AccountPictures
    The default user account picture images are in the hidden system folder below.
    C:\ProgramData\Microsoft\Default Account Pictures
    I suggest you select a new picture to update your account picture.
    1.On your Start screen, click on your user tile at the top right corner, click on Change account picture.
    2.On the Personalize, then click "Browse" to select a new picture.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • New Collection from links/images in current document - is this possible?

    Our team includes PC and Mac users.
    We have CS5.5 - InDesign v7.5.3
    I'm currently running Win7
    This might be a post for the Bridge forum, but since we want the workflow to begin with InDesign...
    I did try searching here, there, and within Exchange forums.
    What we'd like to be able to do is open a document in InDesign that has dozens of links, and by some magical autmotaed (or even manual) process, be able to create a collection - not a snippet - of the linked files.  I've tried several ways to get this to happen both from within ID and Bridge, no luck.
    Is there a way?
    Maybe a script?
    -Rick

    Thanks for the quick reply.  I don't want to package or export linked images using the "Copy Links to..." option from the links panel.  What either of those options would do would in fact create copies of the images. 
    Instead, I want to maintain their original locations, maintain links, etc..
    So, by the term "collection" in my question what I meant to say is a Bridge Collection (as seen in Bridge or in the Mini Bridge panel).  I want to generate such a collection from the items I choose that already are placed within an InDesign document.  I've attempted selecting from the Links Panel in ID, selecting from the document itself and dragging in to a pre-existing collection, but this seems to only result in an InDesign Snippet file.  I checked contextual menus and panel menus.  I also tried the drag operation with various modifier keys just hoping.    No luck.
    I'm thinking there should be a script or plugin for this... but alas have not found it.
    -Rick

  • Linking to new page from BLOB image in report

    Hi Guys,
    I have added an image to my report using the number/Date format field IMAGE:CITIES:CTY_PHOTO:CTY_NR::::::inline:Download. This works great! :)
    I know want the user to click on the image and go to the next page, setting the city code that was selected.
    If I try to add the Column Link Link Text in the usual way I get an error:
    report error:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    Any ideas?
    Thanks in advance,
    Fred

    We had a similar problem - this helped.
    Roger

  • Display Image from buffer Image

    Hi,
    I have bufferdImage I want to display the bufferedImage in my jsp page. Displaing the images is a part of the page. Is it possible to pass the bufferedImage data to servlet and using the servlet Can I display the image by just calling the Servlet from jsp.

    Get2win4world wrote:
    Hi,
    I have bufferdImage I want to display the bufferedImage in my jsp page. Displaing the images is a part of the page. Is it possible to pass the bufferedImage data to servlet and using the servlet Can I display the image by just calling the Servlet from jsp.Apparently, that is the appropriate process of doing it.
    You need to think of encoding respective image format and you can stream the output through a servlet and use *<img/>* tags to call the servlet URL accordingly.
    Please findout the below example where we are using JPEGImage encoding and making an attempt to stream the image.
    package com.krim.utility.servlet;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import java.awt.image.BufferedImage;
    public class SimpleImageServlet extends HttpServlet {
            protected void processAction(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
                    BufferedOutputStream out = null;           
                    BufferedImage myImage = null;               
                    ByteArrayOutputStream bos = null;
                    byte imageBuffer[] = null;
                    JPEGImageEncoder jpg = null;
                   try{
                     myImage = (BufferedImage)request.getAttribute("bufferedImage"); 
                     bos = new ByteArrayOutputStream();
                     jpg = JPEGCodec.createJPEGEncoder(bos);
                     jpg.encode(image);
                     imageBuffer = bos.toByteArray();
                     out = new BufferedOutputStream(response.getOutputStream(),imageBuffer.length);
                     response.setContentType("image/jpeg");
                     response.setContentLength(bos.size());
                     out.write(imageBuffer);
                     out.flush();
               }catch(Exception exp){
                    throw ServletExeption(exp.getMessage());
               } finally{
                    if(out != null)
                     try(out.close();)catch(Exception e){}
                   if(bos != null)
                     try(bos.close();)catch(Exception e){}
                   jpg = null;
                   imageBuffer = null;
            protected void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
                 processAction(request,response);
            protected void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
                 processAction(request,response);
    }Usage in jsp can be like the below where we have a action that could be called with a unique ID which can fetch appropraite BufferedImage.
    <img src="<%=request.getContextPath()%>/image?id=XXXXYYYZZZ"/>In the same way you can think of implementing similar thing for formats like PNG,GIF & etc...According to your requirement and need of the situation.
    Hope that helps :)
    REGARDS,
    RaHuL

  • Badges on iPhoto images? Edited images? huh?

    I am an Aperture newbie. There, I got it out right away.
    I thought I had brought all my iPhoto images into the Aperture Library, but the iPhoto library appears as blue folders and albums in the Aperture Projects panel, and when I select an album, for instance, the image in the Browser and Viewer show a little tag icon (badge?) in the lower right and the metadata panel shows the master file is still in the iPhoto library.
    Confusion-where is the master, really? and what are these duplicate images with the keyword "iPhoto Edited"?
    I have read through the Getting Started manual and part of the full 400+ page pdf manual, no luck yet with this basic concept.

    It's not really a curvy arrow-more like a vertical box, narrowing at the top, with two horizontal lines inside, and a string looking thing from the top, curving left and down. Appears as white on black, in the lower right corner of the image.
    When I began using Aperture, I was sure I had brought in all my iPhoto library to live in the Aperture library, so it could back it all up with the Vault. I'll have to look at that consolidate option.
    Now it makes more sense about the iPhoto edited, except the first batch of images I noticed this for, I had not touched in iPhoto other than to look at them once or twice, oh, aha, and named them, maybe that was the edit, giving them an iPhoto title.
    Thanks! (PS-I tried to click 'helpful' on your message but that took me to a discussions error page)

  • Create Quad Print Image from 4 image files

    Many print programs facilitate a layout of 4 pictures (my preference - others available) in one image to print. How would I go about creating a single image that contains 4 pictures or files in a single jpg file? can it be done? This is not a question about print. It is about creating a single file from 4 seperate files (images).

    Ron,
    1. Open new, blank file. For example: Size 8x10, resolution 300 px/in, color RGB, background - white.
    2. Resolution for printing should be 240-300 px/in for good result. It is desirable that resolution of the component pictures be about the same. Check in Image>resize>image size.
    3. Copy/paste each picture to the background set up in step #1. Each picture will be on its own layer
    4. Use move tool to position the pictures, and to resize with the corner handles while holding down the shift key.
    HTH,
    Ken

  • Help with removing images from Google image searches with Dreamweaver

    I made a sight in dreamweaver, and need to remove a page from that website with some old images. So I removed the link and moved the webpage from the root folder. And If I go into dreamweaver the page is blank showing the image has been removed.
    But the images are still showing up in google image searches even though I removed them in dreamweaver and re-uploaded the sight successfully. How do I remove them form the internet completely so they no longer show up in google images??

    Ben Pleysier wrote:
    Be patient!
    For about 7 years!!!!!!!!!!!
    Once something is on the Internet, it remains so.  That is why people (mainly children) are always advised not to post anything that they may come to regret in a few years time when you are looking for jobs and your potential employer does a background search on you.

Maybe you are looking for

  • Concatenate with 'tab' delimiter in Unicode system

    Hi All, In current system we have a program that creates a tab-delimited file with following code where wa1 and wa2 are character-type fields. data: delim type x value '09'.   (a tab in hex) concatenate wa1 delim wa2 into wm_lstfil. Unicode system wo

  • PO Interface

    Hi All, In PO_HEADERS_INTERFACE table a purchase order is available. After i run the Import Standard PO concurrent the PO doesnt move to the base table in oracle apps 12.1. In PO_INTERFACE_ERRORS table the error is shown as INTERFACE_TYPE PO_DOCS_OPE

  • Why do strokes appear exactly double the size I specify?

    I want a rectangle with a pixel thick boarder. I draw a rectangle, and adjust the boarder to 1px. The boarder is now 2 pixels wide. I change it to 4px, it's 8 pixels wide. I align it centre, inside, outside, the thickness doesn't change (but the func

  • Worth running qmaster on a dual core iMac?

    I figured this must have been asked before, but I can't find the answer when I do a search. I have a new iMac. Can Qmaster help me when I'm compressing video files for Youtube or dvd burning? I did set it up (I think); the icon at the top of the scre

  • Cant make get method work

    package nim; import java.util.Random; public class Row {     private static final int MAX = 21; //max number of stars in row     private int howmany;     /** Creates a new instance of Row with 1 to MAX stars*/     public Row() {         howmany = 1 +