answersLogoWhite

0

If you want it to be on a transparent background, open the image you want to be cut out, and make a new layer. Move the new layer behind the original image. Render the image and cut out all you do not want. Make sure you save the file as a PNG file or the transparency will not stay there.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you change the background of text in an HTML document without affecting what's behind the margin?

<p style="background-image: image.img"> Replace image.img with your image.


How can I crop an image in Photoshop without cropping the background?

To crop an image in Photoshop without cropping the background, you can use the "Content-Aware Crop" feature. This feature allows you to resize the image while preserving the background by filling in the cropped areas with surrounding content. Simply select the "Content-Aware" option in the Crop tool settings before cropping the image.


How do you stop your background site from tiling?

To stop your background site from tiling, you can use CSS to set the background image property. Specifically, use background-repeat: no-repeat; to prevent the image from repeating. Additionally, you can set background-size: cover; or background-size: contain; to ensure the image fits the desired area without tiling. This will create a cleaner look for your background.


If you use CSS to configure both the background image and the background color what will happen?

In most browsers the background image will be shown. If the image has been configured so as not to repeat, and the element is larger than the background image then the area that is not covered by the background image will display the background color. DJL


How do you get a background image for sites?

body{ background-image: photo.jpeg(example.com/image.jpeg);


What is the HTML command used to display an image in background?

style="background-image: url('image.jpg')" Example: <body style="background-image: url('background.jpg')">


How do you change a clip art to a floating object?

To change a clip art to a floating object, you can remove the background or convert the image to a transparent PNG format. Once you've done that, you can place the image onto any background or design where it will appear to "float" without a visible background.


How do you save a PNG format picture without having a background?

Normally delete the background in the image then when saving, save with the transparent option checked. This will give you a transparent background. PNG is different than GIF format because with PNG you get 256 levels of transparency which allows you to smoothly blend your image to the page background on a webpage. GIF has only one level of transparency so you get a pixelated edge to your image.


How do you change your background on Tumblr?

Go to your tumblr customize html. Press Ctrl F and type 'background' (without quotation marks) if you find something under the .body like this: background: #FFFFFF; (or another color code) change it to: background-image: url(YOURIMGHERE); If that code is already there, then just put the URL of the image in the brackets


How does one download the background image on a web page?

There are many sites on the internet that offer free background image downloads. Each of these sites has easy to use, step by step instructions. Some of these sites include: Backgroundlabs, GRSites and Entheos. It is important that one NOT use or download a background image from a webpage without permission from the owner, to do so is copyright infringement.


How do you set a horizontally and vertically repeating background image to an HTML page using inline CSS?

Use the "style" attribute in the "body" tag to set inline styles. Set the "background-image" and "background-repeat"CSS attributes to the body element. "background-image" should have a path to the image you want as a background, and "background-repeat" should have "repeat," indicating you want the image to tile both horizontally and vertically. For example (replace path-to-image.jpg with a relative or absolute path to the background image of your choice): ---- ... ----


How to use CSS in making the picture a background?

To make a picture a background of a web site using CSS, you will use the different background properties, which are: background-color, background-image, background-repeat, background-attachment, and background-position. The specific property you are looking for is background-image. To use this property you would declare in your style sheet the following: body { background-image: url('paper.jpg'); } This is telling the web browser to use the image paper.jpg and make it the background of the entire page. The other background properties control whether the backgound is repeated along the x and/or y axis, the position on the screen the image begins at, whether the background is fixed or scrolls with the page, and the background color.