Get part of image

Hi,
I´ve some jpg image and I need to get small part of this image.
Can somebody tell me how?
Thanks for respond

This is not "some" workflow, this is LiveCycle Process Management, and very high end tool for automating enterprise workflows. I'm not saying you're in the wrong place, but if all you're interested in is image manipulation, I think perhaps a specialized tool will work better. By the way, I'm nota photoshop expert, but I'm sure it can process large quantities of files in "batch" mode.

Similar Messages

  • Changing fill colour for partly transparent images

    Does anyone know how to change the fill colour used for partly transparent images? I have a bunch of PNGs that I made for use as clip art, which I imported into iPhoto (that way I can use the media browser with Pages and Keynote).
    Unfortunately, the images (which are black) are shown on top of a black rectangle both in iPhoto and the media browser. I've tried changing the background colour to both gray and black, but the 'fill' colour stays black.

    There's no way to change it if you want to keep the transparency for use in other applications or web pages.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • Cropping bug: part of image goes black

    A strange problem which cropped up after installing 3.2, and remains after re-installing 3.2.
    When I go to crop a vertical image, the top 1/3 of the image goes black.  I can still select what I want (guessing for the border in the black part) and, when I complete the crop, I get the whole image I want, with no black.
    Interestingly, if I rotate the vertical to horizontal, I can crop with no black part.  So I can use that to crop, and then rotate back to vertical.  But there's clearly a bug here.
    Any suggestions?

    You are probably experiencing the crop and or onscreen proofing bug that was introduced with AP 3.2 update. It is summarized well in the posts on this page:
    http://www.apertureexpert.com/
    We need to wait for Apple to fix this one (or you can look at some of the other posts in this forum for reverting back to 3.1.3 until the fix is issued).

  • Getting 100% patched image

    Hi Guys,
    I am trying to get 100% patched image through build and capture process. I am using below trying to get fully patched image. i have config manager 2012 R2 integrated with MDT 2013
    - I have 'install software' steps in TS (multiple times to get all the patches)
    - For office 2007 and office viewers, i have downloaded patches and added to update folder with office package.
    - I run offline servicing to get any missed out OS and office pacthes
    but still once image is deployed, it detects more updates from SUP (specially for office viewers).
    Looking for some pointers to get patched image out of build and capture process.
    Regards,

    Offline servicing will only get OS patches...not Office.
    The collection where your OS Deployment TS is targeted should have Updates targeted towards it as well. That way they are applicable while the TS is running. Otherwise the updates won't get applied until after the system is deployed and becomes part of the
    regular updates collection. You might already be doing this...it wasn't clear from your post.
    Jarvis
    Blog:
    http://verbalprocessor.com Twitter:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
    The postings on this site are my own and don’t necessarily represent my employer’s positions, strategies or opinions.

  • Save Part of Image

    I have a question here. Now, I have a scanned picture and if I were to save the whole picture, it is a was of disk place. Can I save only part of the picture? If yes, can I know where can I get the guides or samples regarding this.
    Thank you.

    use CropImageFilter Crop the part of Image
    and then ... ...

  • I cannot add a Wi-Fi guest network. Gone to Utilities Airport Utilities and all get is an image/browser of my Airport Extreme. Looking for the browser which has the title Wireless but cannot find anywhere. I need help?

    I cannot add a Wi-Fi guest network. Gone to Utilities>Airport Utilities and all I get is an image/browser of my Airport Extreme. Looking for the browser window which has the title Wireless but cannot find anywhere. What am I doing wrong?

    Open AirPort Utility. The first screen looks something like this:
    Click on the AirPort Extreme and another screen will appear. Click Edit, then the window with the Wireless tab will appear.
    If you do not see these screens, you will need to start over and configure your AirPort again.

  • How can I use applet to get the desktop image of client

    hi,I have a question to ask u.
    How can I use applet to get the desktop image of client? Now I develop a web application and want user in the client to get his current image of the screen.And then save as a picture of jpeg format ,then upload it to the server?
    I have done an application to get the screen image and do upload file to server in a servlet with the http protocal.

    Since the desktop image is on the client's local hard drive, you'll need to look at trusted applets first.

  • How do I use Adobe Edge to get faded header images on my website?

    Trying to use Adobe Edge to get faded header images on my website. Was referred to Adobe Edge because it is supposed to be easy for beginners. I was able to upload my images, but then there was no instruction/direction on what to do next. Everything I clicked just brought me somewhere else. I'm a novice who needs help with coding, as everytime I tried adding coding to my page, it messed it up. I would appreciate if someone can tell me what to do after I upload the images.

    Yes, Animate. Again, I uploaded the images, but then, I didn't see any directions on what to do next, as I would like fading header images for my website. I understand that it is supposed to generate the code for my website, which is where I need the most help.

  • How do I get a "transfer images" button to show up in the solution center?

    How do I get a "transfer images" button to show up in the solution center for my officejet 6500 709a on XP?
    Scan buttons are displayed and work, as does print.

    What installing the twain plug-in, you mean? Go to your applications folder. Find the Adobe Photoshop Elements 11 folder. Look in there for a folder called support files, then for a folder called optional plugins. In the Optional Plugins folder, there should be a folder called ImportModules. Just drag that from the Optional Plugins folder to the regular Plugins folder.
    This will be infinitely easier to do if you put your applications folder window into list view, not the default icon view. To do that, click this button at the top of the window:

  • How to get a .tif image with n different colors?

    Hi..i want to know how can i get a .tif image colored by some colors. I want to do something like this:
    if(tifImage.pixel < 0.1) {
    tifImage.pixel = yellow;
    else if( 0.1 <= tifImage.pixel && tifImage.pixel <0.5){
    tifImage.pixel = red;
    up to n colors.
    I prove the next code, but it is not getting the colors i want.
    public void generateImage(BufferedImage bi,double alto,double medio,String output){
              int width = bi.getWidth(); // Dimensions of the image
              int height = bi.getHeight();
              // Some constant colors (as arrays of integers).
              int[] red = {255, 0, 0};
              int[] green = {  0,255,  0};
              //int[] blue = {  0,  0,255};
              int[] yellow = {255,255, 0};
              //int[] background = { 85, 85, 85};
              int[] background = { 255, 255, 255};
              // The original image data will be stored on this array.
              int[][][] imageData = new int[width][height][3];
              // We'll fill the array with a test pattern bars thingie.
              double[] pixelArray=null;
              for(int w=0;w<width;w++)
                   for(int h=0;h<height;h++)
                        if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=9000){
                             //lo dejo blanco
                             imageData[w][h] = background;
                        else if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=alto){
                             //lo dejo rojo
                             imageData[w][h] = red;
                        else if(bi.getRaster().getPixel(w,h,pixelArray)[0]>=medio){
                             //lo dejo amarillo
                             imageData[w][h] = yellow;
                        else{
                             //lo dejo verde
                             imageData[w][h] = green;
              // Now we have a color image in a three-dimensional array, where the
              // third dimension corresponds to the RGB components.
              // Convert the color image to a single array. First we allocate the
              // array.
              // Note that this array will have the pixel values composed on it, i.e.
              // each R,G and B components will yield a single int value.
              byte[] imageDataSingleArray = new byte[width*height*3];
              int count = 0;
              // It is important to have the height/width order here !
              for(int h=0;h<height;h++)
                   for(int w=0;w<width;w++)
                        // Rearrange the data in a single array. Note we revert RGB, I still don't
                        // know why.
                        imageDataSingleArray[count+0] = (byte)imageData[w][h][2];
                        imageDataSingleArray[count+1] = (byte)imageData[w][h][1];
                        imageDataSingleArray[count+2] = (byte)imageData[w][h][0];
                        count += 3;
              // Create a Data Buffer from the values on the single image array.
              DataBufferByte dbuffer = new DataBufferByte(imageDataSingleArray,width*height*3);
              // Create an pixel interleaved data sample model.
              SampleModel sampleModel =
                   RasterFactory.
                   createPixelInterleavedSampleModel(DataBuffer.TYPE_BYTE,
                             width,height,3);
              // Create a compatible ColorModel.
              ColorModel colorModel = PlanarImage.createColorModel(sampleModel);
              // Create a WritableRaster.
              WritableRaster raster = RasterFactory.createWritableRaster(sampleModel,dbuffer,new Point(0,0));
              // Create a TiledImage using the SampleModel.
              TiledImage tiledImage = new TiledImage(0,0,width,height,0,0,sampleModel,colorModel);
              // Set the data of the tiled image to be the raster.
              tiledImage.setData(raster);
              // Save the image on a file.
              JAI.create("filestore",tiledImage,output,"TIFF");
    Thanks

    I tried that. When I open one image and set the exposure, then go to open the second image, nothing happens. I then saved one image as a psd file, then it would let me open the raw file a second time. When I had both open on the same screen and dragged the layer from one into another image, the layer size ended up being different than the other file. It was shifted down and to the left. I need these images to be pixel locked, and the user experience I went through did not allow me to do this.
    I also do not see a way to copy/paste layers between files.

  • How can you get a mirror image of a photo on iPhoto?

    How can you get a mirror image of a photo on iPhoto?

    By using an external editor. Preview is already on your Mac. It's called 'Flip Horizontal'
    In order of price here are some other suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate or the App Store.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • How to I get a mirror image of a 3D extrude and Bevel image?

    I created a ribbon using the extrude and bevel effect and then mapping it with a custom symbol. I copied the image and then tried to get a matching image on the flipside to mirror it but cannot seem to figure it out. Is there a way to somehow flip the orientation of the image? I tried using transform and then reflect and it does not do anything. I tried to do it manually in mapping and flipping the box upside down and in reverse but it just doesn't seem result in the a reflective image. Any ideas on this? Attached are the two images I am trying to get to reflect each other. Thanks

    It works so it is you who have perhaps a blind spot you have to select reflect X and move the object horizontally just look at my settings and the video.
    If you do not see a difference than what I have done and what Scott has suggested than what you actually did then he problem is something entirely different.
    Here is a video you can go wrong if you follow it.
    http://www.wadezimmerman.com/videos/TransformReflex.mov

  • How to get the full image directory when i upload the image to web page???

    hai, how to get the full image directory when i upload the image to web page???
    here is the example:
    <form action="uploadfile.jsp" method="post">
    image<input type="file" name="image" />
    <input type="submit" value="submit"/>
    <%
    String s=request.getParameter("image");
    %>
    <%=s%>
    </form>
    i upload the image from C:\image\center.gif. i use request.getParameter just can get the image name like "center.gif". Can anybody help me how to get the full path name. Thanks a lot..

    There is no need to get the path. It is also fairly pointless as the server cannot access the client's local file system.
    Carefully read this article how you can upload files the right way: http://balusc.blogspot.com/2007/11/multipartfilter.html

  • In Preview, I suddenly am unable to get the "Adjust Color" tool panel to edit images. I just get the rectangular image selection tool instead. How do I ge the "Adjust Color" tool panel back?

    In Preview, I suddenly am unable to get the "Adjust Color" tool panel to edit images. I just get the rectangular image selection tool instead. How do I ge the "Adjust Color" tool panel back?

    Hmmm, I wonder if that window is hidden or off screen? Have you moved the pic window around to look under it?
    Might try this...
    Safe Boot , (holding Shift key down at bootup), use Disk Utility from there to Repair Permissions.
    Then move these files to the Desktop for now...
    /Users/YourUserName/Library/Preferences/com.apple.finder.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    /Users/YourUserName/Library/Preferences/com.apple.desktop.plist
    /Users/YourUserName/Library/Preferences/com.apple.recentitems.plist
    /Users/YourUserName/Library/Preferences/com.apple.Preview.plist
    /Users/YourUserName/Library/Preferences/com.apple.Preview.bookmarks.plist
    Reboot & test.
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.

  • Why do I get Media Type "image/ipeg" when uploading a PDF?

    I am getting this strange "image/ipeg" media type when uploading with FF (33.0.2 on Mac OS X 10.9.4), instead of "application/pdf." Viewing the request sent using Developer Tools, I get the following headers:
    Content-Disposition: form-data; name="test"; filename="test.pdf"
    Content-Type: image/ipeg
    Looking at mimeTypes.rdf in my that profile, I see
    <RDF:Description RDF:about="urn:mimetype:image/ipeg"
    NC:value="image/ipeg"
    NC:editable="true"
    NC:fileExtensions="pdf"
    NC:description="Document">
    <NC:handlerProp RDF:resource="urn:mimetype:handler:image/ipeg"/>
    When creating a new profile and uploading a PDF, I correctly get "application/pdf", and sure enough, mimeTypes.rdf states:
    <RDF:Description RDF:about="urn:mimetype:application/pdf"
    NC:value="application/pdf">
    <NC:handlerProp RDF:resource="urn:mimetype:handler:application/pdf"/>
    </RDF:Description>
    I have disabled all Add-ons to see if any of them was causing this, but no luck. I suspect it's either some add-on or OS app association (like OS X Preview) that's causing this, but I can't find the culprit.
    Has anybody ever encountered this? It's very straightforward to fix, but I would like to understand exactly what is going on because it sounds somewhat wrong to send "image/ipeg" as the Media Type for PDF.

    One way that odd content types can be added to the mimeTypes.rdf file is when you are presented with the download dialog (Open/Save/Cancel) for a novel content type and you associate it with a known application. But tracking down the exact site that caused this (assuming it was a misconfigured server) could be impossible.
    On Windows, bizarre things also could be incorporated from the Windows registry, but I don't know whether there is anything equivalent on Mac.

Maybe you are looking for

  • Como apagar apenas um item do historico de navegação

    Olaaaaa... Gostaria de saber como posso apagar apenas um item do historico de navegação na internet.

  • Copy protected input after Apple TV2 update

    I updated my Aplle TV2 to the latest software. Right now, I do habe  a small button shown on the screen "Copy protectred input" I t shown in every menu and on every screen in Apple TV - no matter if I play a movie or something else. I cant't get it a

  • Wi-Fi: do I need to register every time I use WiFi network?

    This is basic question but I'm not quite sure about using Edge network and WiFi network on my iPhone. Mostly, I set - WiFi "on" - Ask to join networks "on" So, always available WiFi networks come up when I use my iPhone. But I usually cancel to use i

  • Camera Is Pink and inverted??

    Hi I have had my iPhone for like about 10 months and for about the last month every so often when i go to take a picture my camera sees everything in pink and it seems like it is inverted. it is hard to explain but it doesn't happen all of the time b

  • Cannot open my photoshop premiere Elements 12

    Cannot open my photoshop premiere elements 12...Pictures are not there!