GIMP :: Paste Single Image In New Doc Pastes Multiple Times (2012)

Jun 28, 2012

When I cut, and copy an image to the clipboard and then paste the image into a new, blank page, it pastes the image multiple times (about 20) on the one page. How can I revert to it pasting just one image?

View 1 Replies


ADVERTISEMENT

Photoshop :: Copy And Paste Error - Text Pastes At Half-size

Jul 8, 2013

Copy and paste error — Text pastes at half-size.
 
When I copy and paste text already in my photoshop document, the text retains the styling but the text size is exactly half of what it should be.
 
I'm using the most recent version of CS6.

View 4 Replies View Related

Paint.NET :: Printing Image Multiple Times On One Page

Jan 6, 2014

I have created an image and would like to print as many copies of it as I can fit onto a single page from my printer (let's say A4 size). (My image is a logo that I am printing to water-slide transparency which is too expensive to waste one sheet per image). I can't seem to easily do this in Paint.Net (the options for contact sheet and wallet don't come out in quite the size I want). So I guess the best option is to save the file in another format (tiff, jpeg, PNG etc) and then copy it multiple times into another app like Word or PowerPoint, and then print from there. However my image has some transparent areas that I need to keep as transparent. How do I do this? Are there some image file formats that will retain the transparency? Likewise do word or PowerPoint support the transparent areas and print as such?

View 3 Replies View Related

GIMP :: Paste In Same Place As Copied Selection Was (2012)

Feb 11, 2012

I have two images of the same size (e.g.800x600)

I select a region of the first image with any selection tool (e.g. the fuzzy select tool) I copy the selection.

Isn't there a way to paste the selection into the second image at exactly the same position where it was in the first image?

It seems to me unbelievable that there is no such option, but I can't ind it. I must be missing it. In Adobe flash it is called "paste in situ".

View 2 Replies View Related

Photoshop :: Saving Multiple Times - JPG Image Starts To Lose Information

Jun 20, 2012

So they say if you save a JPG image lots of time, the image starts to lose information...
 
If  I open up a JPG image in Photoshop, make some edits, then use the 'save as' command (using a lower quality setting), overwriting the current file open, will saving it again further compress the image that is currently open? Or does photoshop store the original file (when it was first opened) information until closed?

View 5 Replies View Related

Edge Animate CC :: How To Set Text / Image And Link For A Symbol Used Multiple Times On Stage

Oct 7, 2013

I have a logic problem in my code that I need solving,
 
here's the bit of code which is supposed to set the text, image and link for a symbol used multiple times on the Stage.
 
var names = ["melz", "brom", "calm", "micj", "mick", "brir", "mato", "brym", "azin", "hugh", "nicl", "bonr", "lisa"];
var name = null;
for(var x = 0; x < names.length; x++){
          name = names[x];
          var initials = (name[0]+""+name[3]).toUpperCase();
          var cursymbol = sym.getSymbol(name);

 [Code]...
 
The text and image code work, however my problem is with setting the link. It always sets all the symbols to the last name in the names[] array. What I want it to do is to set the link to the personalised name in the array. So the HH button will link to hugh.html and the BM button will link to brym.html etc.
 
For now I'm going to play around a bit and see what happens.

View 1 Replies View Related

GIMP :: Paste Something To Multiple Layers

Dec 2, 2011

I have a 63 frame animated gif and I need to paste something to all the layers... all I could find is this here [URL].... but the plug in takes me to a page not found....

View 5 Replies View Related

GIMP :: Select / Copy / Paste Multiple Layers?

Dec 11, 2011

Using GIMP 2.6.11 under Windows XP

Is this real? I am really amazed that there is no way to do this. Am I missing something? I have multiple images, each with a unique background layer. On top are multiple other layers, both images and text layers. I was editing one and was about to save it but then realized it was on the wrong background.

All I want to do is select four or five layers from this unsaved image with Background A, copy them and then open an image with Background B and paste them in so there will be minimal issues with alignments and such. I have been editing each of these four layers and there are a fair bit of changes that have been made to just throw them away and start over. The background is not the only difference between the images, it is just what I use as a reference so copying that over to the unsaved image would also require multiple layer copy/pasting.

I have already tried linking the layers but any copy/cut/paste seems to only work on the active layer, unless I am again missing something. This seems like a really fundamental function to not be supported.

View 7 Replies View Related

GIMP :: Load Single Pages From Multiple Page TIFFs

Aug 18, 2012

I am trying to load single pages from multi page tiffs, convert them to monochrome (dithered), flatten the image, then save them as single monochrome, ccitt group4 tiffs. - all through scripts.

The multipage tiffs contain pages in grayscale and color which were created using the old style (problematic) JPEG compression option.

I have tried other tools, such as libtiff (modified with a patch to handle the old jpeg compression), and the latest version of imagemajick. Unfortunately they cannot correctly convert the files, whereas gimp can, but only one page of the multi-page tiff at a time(gimp crashes if I load a 5page document (as separate images) then convert each image to monochrome,flatten and save in one session)

the scripting function for loading tiffsfile-tiff-load does not expose the options to load individual pages, or to select loading as images or as layers, which the visual file load/import does.

How I can achieve this using a script.? Manually is not a problem, but too time consuming for large (eg. 200page) tiffs.

View 9 Replies View Related

Photoshop :: How To Crop Single Image Into Multiple Files

Feb 6, 2013

I want to divide up a bunch of scanned in photos quickly. I have 4 or 5 photos . Aligned next to each other in each scan. 

View 5 Replies View Related

Photoshop :: Create A Single Image From Multiple Photos

Sep 17, 2013

I have 256 images that are all set out as a testure and need to combine them all into a single image. Each image is 256x256 so the final image will be 65536x65536 is there any possible way I can combine all images without placing each one manually?

View 5 Replies View Related

GIMP :: Script-fu Copy Image And Paste As Layer Into Different Image

Mar 18, 2011

I'm trying to write a script to batch process a number of files. I want the script to open file a*.png, convert black color to alpha and paste image b*.png on top of a*.png (both are the same size). The script converts black to alpha, but it doesn't paste image.

(define (batch-alpha-paste pattern pattern2);get the file lists (let* ((filelist (cadr (file-glob pattern 1)))(filelist2 (cadr (file-glob pattern2 1)))) (while (not (null? filelist))(let* ((file-name (car filelist))(filename2 (car filelist2)) (image2 (car (gimp-file-load RUN-NONINTERACTIVE filename2 filename2))) (draw2 (car (gimp-image-get-active-layer image 2)))(image (car (gimp-file-load RUN-NONINTERACTIVE filename filename)))(drawable (car (gimp-image-get-active-layer image)))) ; convert black to alpha(plug-in-colortoalpha RUN-NONINTERACTIVE image drawable '(0 0 0))
[code]....

I call the script from shell:gimp -i -b '(batch-alpha-paste "aa*.png" "bb*.png")' -b '(gimp-quit 0)'

how to copy image 2 into image ?

View 1 Replies View Related

CorelDRAW Graphics Suite 12 :: Running Script Multiple Times Produces Multiple Copies?

Sep 1, 2011

I have this script that basically makes a shape expand by adding an outline, conveting the outline to an object, and then welding the whole thing together.

I have the script set to execute with hotkey ctrl+numpad+

The odd thing is, when I run it once, it seems to work fine and only one object is left, but when I hold down ctrl and press numoad+ over and over again, it seems to produce a new copy of the object everytime.

I'm not sure why this is happening, but I need to get it to stop. 

Sub Expand()    EventsEnabled = False        'Dim vars    Dim c1 As New Color    Dim OrigSelection As ShapeRange    Dim OrigColor As Shape    Dim width1 As Double    Dim height1 As Double    Dim minSize As Double    Dim Thickness As Double        'copy color of current selection    Set OrigColor = ActiveShape    If OrigColor Is Nothing Then Exit Sub    If OrigColor.Fill.Type <> cdrUniformFill Then Exit Sub    c1.CopyAssign OrigColor.Fill.UniformColor        'get thickness to increase by    Set OrigSelection = ActiveSelectionRange    OrigSelection.GetSize width1, height1    If width1 <= height1 Then minSize = width1    If width1 > height1 Then minSize = height1    Thickness = minSize * 0.035        OrigSelection.SetOutlineProperties Color:=CreateRGBColor(0, 0, 0)    OrigSelection.SetOutlineProperties Thickness, ScaleWithShape:=True        'weld    Dim s1 As Shape    Set s1 = OrigSelection(1).Outline.ConvertToObject    Dim s2 As Shape    Set s2 = s1.Weld(OrigSelection(1), True, True)            'auto reduce    's2.Curve.Nodes.All.AutoReduce 0.001    's2.Fill.ApplyUniformFill c1        'delete remnants    OrigSelection.Delete    s1.Delete    'OrigColor.Delete            EventsEnabled = TrueEnd Sub

View 5 Replies View Related

Lightroom :: Save Multiple Crop Settings For Single Image?

Apr 30, 2012

Let me start by describing my needs. I need to generate proofs for my shoots. I'd like to export images with different aspect ratios for target devices, ie iPad, Android phone, 16:9 TV, etc. What would be really great is if I can select a named "crop setting" in the export window and generate JPGs based on the chosen setting. I've searched all over the place, all seem to talk about presets, virtual copies, etc, which really doesn't address what I want.
 
Fundamentally I'd like to be able to save a handful of crop settings (unique crops but with common names) for each image. I will create the crops manually as I have to pick the position and size for each carefully. For example, on a 4000x6000 image I have these crop settings (for a fairly small area of the image):
 
1. iPad [settings: top-left coordinate (500,500), ratio 4:3, width2000]
2. Android [settings: top-left coordinate (500,400), ratio 8:5, width 2400]
3. HDTV [settings: top-left coordinate(500,450), ratio 16:9, width 2200]
 
As you can see each crop is different becasue I want to be precise about how the cropped outputs look. Then at export time, I want to be able to multi-select a bunch of images and pick say "iPad" crop setting to create the JPGs in a batch.
 
Is there a custom plugin outside of Lightroom that can handle this?

View 19 Replies View Related

AutoCAD LT :: 2013 Copy / Paste Not Working After Few Times

Jan 6, 2014

A few of the computers are having problems with the Copy/Paste function. They had it working a few times and after that, it stopped working (can't paste after copying). Have tried restarting autocad and the computer but the issue is still there. Have also tried updating the service pack to the latest version. It works for a while and stopped working again.

View 5 Replies View Related

GIMP :: Set Mode Or Opacity For Multiple Layers At Once? (2012)

May 22, 2012

Is it possible to set the blending mode or the opacity settings formultiple layers all at once? Ideally I'd like to select multiple layersand change the settings for all of them at once, but I can't seem to figureout a way to do this, so I think it doesn't exist?

Is this something other people would like to be able to do?

View 1 Replies View Related

GIMP :: (blend) Borders Of Image That Paste Onto Another Image?

Jun 22, 2013

i was wondering if it would be possible to get a plugin or maybe there's a way to do this that would 'blend' the border of one image that you paste on top of another, larger image. so that the borders wont contrast - like a black dot on a white page.

if that description doesn't make sense, imagine using such a tool on a a black dot on a white page. it would make the outer part of the circle transition from black, to dark grey, to a lighter grey, and then to white...

View 2 Replies View Related

GIMP :: Cut Right Half Of One Image And Paste It In Same Position On Second Image

Jul 5, 2012

I want to cut the right half of one image and paste it in exactly the same position on a second image.

I've found that by cropping I can get a very precise cut but I want to know if there is a way to paste it or move it once pasted to exactly the right half of the image I am pasting it into.

View 4 Replies View Related

CorelDRAW X5 :: Print Multiple Copies - Result Is Just Single Copy Of Image

Jan 10, 2012

I'm having an issue printing to a Panasonic DP-C322 PS printer.  I send my image and ask it to print multiple copies.  The result is just a single copy of my image.   If I use the PCL driver, the image prints in multiples, as expected. 

View 1 Replies View Related

GIMP :: Paste Image Into Background

Dec 13, 2013

What is the best way to paste an image into a background and have it blend nicely with the background to avoid jaggies.

I've been playing with the blur and smudge icon but then it depends on my eye and I lose resolution around the edges. I guess what I would want ideally is for a way to paste my image then have a slider or a way to select the amount of anti aliasing from image to background.

View 2 Replies View Related

GIMP :: Paste A Layer From Clipboard Into Image

Nov 20, 2013

I'm a relative noob to GIMP. Long time Paint Shop Pro user who has gone over to a Mac Book. I'm very frustrated by my inability to paste more than one layer at a time. Meaning, that I paste a layer from the clipboard into an image I am building, but I cant copy a new image to paste in without shutting down the program & reopening....Otherwise the same image keeps trying to repaste.

View 7 Replies View Related

GIMP :: Copy Part Of Image And Paste It To Another?

Jan 29, 2012

I have one image that has a specific texture I want to reuse for my own custom image, but I'm not sure how to use it in the paint brush while working on the other one. Can I do it the way I described?

View 2 Replies View Related

GIMP :: Image Shifted 3 Pixels Right After Paste

Aug 12, 2011

Whenever I paste an image from the internet into Gimp, the image is shifted 3 pixels to the right, and those three pixel columns wrap around to the left side. At the bottom of those three now leftmost columns are a red, green, and blue pixel.

What the bottom left corner looks like:

This only started recently and I can't think of anything I changed recently to trigger it.

View 2 Replies View Related

Photoshop Elements :: How To Print Multiple Copies Of Same Image (with Specific Fixed Dimensions) On Single Page

Feb 23, 2013

I am using Photoshop Elements 10 on Win 7 PC.  I am trying to print multiple copies of one image on a single 8.5x11 sheet of paper? The images are artwork for buttons (to be used in button-making machine) so the dimensions must be exact on the duplicated images.  When I select Picture Package, the images are resized to fit the dimensions in the picture package. When I select Contact Sheet, the images are resized to fit the number of columns I selected.  Neither is acceptable.  How can I repeat the same image on a single piece of paper without having the system re-size the image?  I know that I can manually create a new PSE file and manually insert the images into this file.  This is what I have been doing as a work-around. 

View 2 Replies View Related

3ds Max :: Scanline Render 10 Times Slower In Version 2012

Aug 31, 2012

I have a strange problem with Max 2012. Scanline renderer is 10 times slower than 3ds max 2009. Why is that? All the settings are the same. Also, the rendered frame window is very slow too - when I pan around there is a horrible delay/stuttering whereas in Max 2009 I can pan around in real time.

View 5 Replies View Related

GIMP :: Full Image Appearing After Cut And Paste Save-as

Oct 23, 2012

If I take an image, and using the path tool, draw an area, then do a selection from path, cut/copy and paste as 'new image' then save the new image as a .bmp, .jpg etc, I am getting the whole original image instead of the cut an pasted portion. The full image does not show up as long as the drawing remains in .xcf (the background is a grey checkerboard). When saved as .jpg or .bmp the checkerboard is replaced by the original source image that it was cut from. This is Gimp 2.6.11 under Linux.

I have checked for extra layers, tried removing alpha channels, doing a 'copy visible' and re-pasting, merging of all layers all to no avail. It doesn't always happen either so there must be something, some setting or clicky box somewhere.

View 3 Replies View Related

GIMP :: How To Copy And Paste Image Without Changing Colors

Jun 20, 2013

So I am trying to work with a web page template in dreamweaver. I am attempting to open the background image in this template with gimp, then paste over top of the Original image with a new image. Every time I paste the new image in it takes the color style of the original.

I.E. The original image is in shades of brown while the new image is in many different colors. Whenever I paste the new image (the image with many colors) it changes to shades of brown like the original image.

The same thing happens if I open the new image as a new layer or just simply copy and paste the new image in.

How do I bring the new image in without it changing colors?

View 2 Replies View Related

GIMP :: How To Select Portion Of Image And Paste It To Another Layer

Mar 11, 2013

Im just trying to select a portion of an image and the paste it to another layer.

1. Select a portion and copy.
2. Create new layer.
3. Select the new layer.
4. Paste.

The only thing i get is a kind of new layer that says: "Floating selection"

View 1 Replies View Related

GIMP :: Cut Out Image And Paste Onto White Blank Template

Oct 11, 2012

Ive built a website to sell makeup and cosmetics and am currently in the process of photographing every item to get the products on the site.

I take the pics on a white card background, in GIMP I need to basically 'cut out' the product and copy and paste it on to a blank white template. By using a template all my pics should be the same size once uploaded on to my site.

View 1 Replies View Related

3ds Max :: Backburner 2012 Render Times Seem Slower Than 2008 Version

Aug 19, 2011

The issue that I am seeing is that BB 2012 is slower at rendering than BB 2008.

1. The server hardware is the same with no other changes other than upgrading to BB 2012. I uninstalled 2008.1 prior to the upgrade.

View 1 Replies View Related

GIMP :: How To Cut / Copy / Paste And Resize So That Image Fits Screen

Dec 13, 2011

I'm very new to this photo editing. Never used photo shop. Only slightly understand what a layer is and don't really know how they work.

Basically I want to take one image of a person looking at a computer screen and then on the computer screen I want to paste another image so it looks as though they're looking at the image.I have both images but how to cut, copy, paste and resize so that the image fits the screen.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved