Archive

Posts Tagged ‘inches’

Easy Dvd Graphic

August 3rd, 2011 Comments off

I need 2 graphics created. First is a dvd cover sheet designed. (NOT A DIGITAL DVD.. the physical paper that I’ll get printed and inserted onto a dvd case. Second is the label for a DVD disc.

I already have the text and design that needs to be put on the graphic, but I need someone to put it into the exact specifications for my printing service.

I’ve attached an example of the digital image for you to recreate for print. I will give you all text to put on the dvd and any graphics needed. Here are the dimensions I need it created in:

Cover Width – 10.79 inches (3236 pixels)
Cover height – 7.24 inches (2173 pixels)
Spine Width – .55 inches (165 pixels)
insert width – 5 inches (1500 pixels)
insert height – 7.25 inches (2175 pixels)

Disc diameter is 1394 pixels

You must use the code word “rockin” in your reply or else
I will not choose you no matter how good your reviews. (This
helps me know that you’ve actually read what I need and can
create it.

This should be a real easy job for any one who designs graphics often.

Print Designs

August 1st, 2011 Comments off

Hi,

I will need 4 different designs and they will be for prints. Final output will have to be in psd and pdf files. The resolution in psd files will have to be 300DPI for printing purposes.

Three files will be 36 inches by 48 inches, while the other one will be 144 inches by 36 inches. Again this will have to be designed at 300 DPI.

These are banner print designs.

I need to see samples of your work, and see your creativity. If you are selected, you will have continuous work given to you to speed up the process. I must see your sample work, please do not show me any websites, I need to see only designs.

Further details of the designs will be given once selected. You will provide two drafts for each design that means 8 designs in total. One design will be selected for each banner but you will continue to modify designs until satisfied. Of course I would want to finish as fast as you would like so we can all work on another project, but the customer must provide final approval.

If you agree to above terms, please bid and thank you for your time.

Strong Visual Business Card

April 7th, 2011 Comments off

I need a strong visual designer to design a visually striking business card for me.

Good Examples would be

http://www.tasteofink.com/
http://dzineblog.com/2010/07/150-best-creative-business-card-designs.html
http://www.1stwebdesigner.com/inspiration/minimal-business-cards/
http://www.webdesignerdepot.com/2009/05/100-really-creative-business-cards/

The cards will be printed in 4 color process, I will provide text to the winning bidder.

Card can be either horizontal( 3.5 inches x 2 inches ) or vertical ( 2 inches x 3.5 inches)

BE CREATIVE ! This card should stand out in a crowd

I will be choosing a provider on April 8 My budget is 20.00 US

Visual Basics

February 3rd, 2010 Comments off

1. Table 1 below shows the standard prices for items in a department store. Suppose prices will be reduced for the annual President’s Day Sale. The new price will be computed by reducing the old price by 10 percent, rounding up to the nearest dollar, and subtracting 1 cent. If the new price is greater than the old price, the old price is used as the sale price. Write a program to display in a list box the output shown in Table 2 below.

Table 1 President’s Day sale.

———————————————————————–

Item Original Price

———————————————————————–

GumShoes 39.00

SnugFoot Sandals 21.00

T-Shirts 7.75

Maine Handbag 33.00

Maple Syrup 6.75

Flaked Vest 24.00

Nightshirt 26.00

Table 2 Output

Item Sale Price

GumShoes 35.99

SnugFoot Sandals 18.99

T-Shirt 6.99

Maine Handbag 29.99

Maple Syrup 6.75

Flaked Vest 21.99

Nightshirt 23.99

2. Rewrite the program so input, processing, and output are each performed by calls to Sub procedures.

Private Sub btnCompute_Click(…) Handles btnCompute.Click

‘Convert feet and inches to centimeters

Dim str As String

Dim feet, inches, totalInches, centimeters As Double

str = “Give the length in feet and inches. “

feet = CDbl(InputBox(str & “Enter the number of feet.”))

inches = CDbl(InputBox(str & “Enter the number of inches. “))

totalInches = 12 * feet + inches

centimeters = 2.54 * totalInches

txtOutput.Text = “The length in centimeters is ” & centimeters

End Sub

3. Write a program to declare an array with the statement Dim state(49) As String and maintain a list of certain states. The list of states should always be in alphabetical order and occupy consecutive elements of the array. The buttons in the program should give the user the following options:

(a) Take the state specified by the user in a text box and insert it into its proper position in the array. If the state is already in the array, so report.

(b) Take the state specified by the user in a text box and delete it from the array. If the state is not in the array, so report.

(c) Display the states in the array.

4. The table below contains the statistics for a stock portfolio. (The current prices are given for January 17, 2008.)

Stock portfolio.

——————————————————————————-

Number Date Purchase Current

Stock of Shares Purchased Price/Share Price/Share

——————————————————————————-

Amgen 200 8/19/97 12.625 47.42

Delta Airlines 100 12/3/97 55.875 15.19

Novell 500 8/27/97 10.375 6.13

PPG 100 12/18/97 28.375 62.64

Timken 300 3/13/98 34.625 26.88

——————————————————————————-

(a) Compose a program to create the sequential file csvSTOCKS.TXT containing the information in the Stock portfolio table.

5. Write a program that contains a list box (with Sorted = False), a label, and two buttons captioned “Add an Item” and “Delete an Item”. When the Add an Item button is clicked, the program should request an item with an input dialog box and then insert the item above the currently highlighted item. When the Delete an Item button is clicked, the program should remove the highlighted item from the list. At all times, the label should display the number of items in the list.

6. A computer dealer offers two basic computers, the Deluxe ($1000) and the Super ($1500). The customer can order any of the following additional options: upgraded video card ($200), internal modem plus Wi-Fi ($30), or 1GB of added memory ($120). Write a program that computes the cost of the computer system selected.

Categories: Visual Basic Tags: , , , , , ,

Visual Basics

January 5th, 2010 Comments off

1. Table 1 below shows the standard prices for items in a department store. Suppose prices will be reduced for the annual President’s Day Sale. The new price will be computed by reducing the old price by 10 percent, rounding up to the nearest dollar, and subtracting 1 cent. If the new price is greater than the old price, the old price is used as the sale price. Write a program to display in a list box the output shown in Table 2 below.

Table 1 President’s Day sale.

———————————————————————–

Item Original Price

———————————————————————–

GumShoes 39.00

SnugFoot Sandals 21.00

T-Shirts 7.75

Maine Handbag 33.00

Maple Syrup 6.75

Flaked Vest 24.00

Nightshirt 26.00

Table 2 Output

Item Sale Price

GumShoes 35.99

SnugFoot Sandals 18.99

T-Shirt 6.99

Maine Handbag 29.99

Maple Syrup 6.75

Flaked Vest 21.99

Nightshirt 23.99

2. Rewrite the program so input, processing, and output are each performed by calls to Sub procedures.

Private Sub btnCompute_Click(…) Handles btnCompute.Click

‘Convert feet and inches to centimeters

Dim str As String

Dim feet, inches, totalInches, centimeters As Double

str = “Give the length in feet and inches. “

feet = CDbl(InputBox(str & “Enter the number of feet.”))

inches = CDbl(InputBox(str & “Enter the number of inches. “))

totalInches = 12 * feet + inches

centimeters = 2.54 * totalInches

txtOutput.Text = “The length in centimeters is ” & centimeters

End Sub

3. Write a program to declare an array with the statement Dim state(49) As String and maintain a list of certain states. The list of states should always be in alphabetical order and occupy consecutive elements of the array. The buttons in the program should give the user the following options:

(a) Take the state specified by the user in a text box and insert it into its proper position in the array. If the state is already in the array, so report.

(b) Take the state specified by the user in a text box and delete it from the array. If the state is not in the array, so report.

(c) Display the states in the array.

4. The table below contains the statistics for a stock portfolio. (The current prices are given for January 17, 2008.)

Stock portfolio.

——————————————————————————-

Number Date Purchase Current

Stock of Shares Purchased Price/Share Price/Share

——————————————————————————-

Amgen 200 8/19/97 12.625 47.42

Delta Airlines 100 12/3/97 55.875 15.19

Novell 500 8/27/97 10.375 6.13

PPG 100 12/18/97 28.375 62.64

Timken 300 3/13/98 34.625 26.88

——————————————————————————-

(a) Compose a program to create the sequential file csvSTOCKS.TXT containing the information in the Stock portfolio table.

Graffic Artist Quick Job

January 3rd, 2010 Comments off

I need someone to redo my sizing charts

In 48 hours time (fast service)

6 charts

3 different style charts for jackets
3 different style charts for Shirts
3 different style charts for overalls

(Three different looking charts all have same measurements, they just can not look the same. Coloring and layout must be different but measurements will be the same)

I will provide and measurements in inches and you will need to convert for a inches and cm chart,Chart must be divided into inches and cm and color coded to make it easy to read

Each chart needs to be clear and VERY understanding. With inches and cm well marked/colored

Charts must look clear even when blown up but ez to read small sized

Here is a sample of the chart I did myself and is not clear

This is a sample of what I am looking for but much move pro

This is a quick job for someone skilled.

I am proving the sizes and a sample of what i need

I need completed asap, no delayers

Jpg To Vector Image Conversi 2

January 1st, 2010 Comments off

Must be clearly converted from JPG format to Vector format to fit poster frames in the following sizes to be real clear. Photo needs to adjust to much larger sizes to fit the framing (below):

36 inches in width and 24 inches in height

24 inches in width and 24 inches in height

Jpg To Vector Image Conversion

December 16th, 2009 Comments off

Must be clearly converted from JPG format to Vector format to fit poster frames in the following sizes to be real clear. Photo needs to adjust to much larger sizes to fit the framing (below):

36 inches in width and 24 inches in height

24 inches in width and 24 inches in height

Pritnt Ad Design

October 14th, 2009 Comments off

I need 3 different print ads designed.

Each ad needs to be delivered in a Photoshop .psd format, with 300 dpi, and in CMYK color space.

The ad sizes are:

Ad #1 and Ad #2:
3.625 inches wide x 3.25 inches height or 1088 x 975 pixels

Ad #3:
3.625 inches wide x 5 inches height or 1088 x 1500 pixels

the ads will each have a Logo, Soem text, and Product Images that I will supply. I will give you the product images with the backgrounds erased, so composition with them should be no problem.

You will choose a nice background, fonts, effects, and layout.

These ads will be used in full color, glossy printed magazine. Highest quality is needed.

this needs to be done on time, experienced designers only please.

100% escrow to start.

Postcard Design-easy

September 8th, 2009 Comments off

Easy project designing 2 different sized postcards.

Sizes are 6 inches long by 4-1/4 inches high and 6-1/8 inches high by 11-1/2 inches long

The postcard is about selling our website design services to plumbers.

Designer must supply copy, and all royalty free graphics for the postcards.

You can use http://www.ambonieum.com/Website as reference point as our site is going to be very like that one and we we the postcards to reflect that..

Also these citera below must be met:

What color space should I send my files in?
All files should be sent in CMYK. Any files submitted in RGB may experience unacceptable color shifting.

What are the bleed requirements?
All files must include a 1/8″ (0.125 inch) bleed per dimension regardless if your design bleeds to the edge or not. An example of bleed setup for a 4″ x 6″ postcard would be 4.125″ x 6.125″.

What are your resolution requirements?
All rasterized (bitmap) images must be at least 300 dpi. However, 400 dpi for photo images and 1200 dpi for text and line art is highly recommended.

Final product will be in 3 formats: word or publisher(Microsoft), pdf, jpg

Please PM samples of the project if you bid.

Page Covers- 8.5 X 11 Inches

May 12th, 2009 Comments off

I need someone to do3 quick covers for me. My job boss is trying to write review stories for the school players and he needs a magazine-like cover (a normal 8.5 x 11 inches). We will need the covers in PDF and Jpeg formats. These are very simple stuff that can be done with basically an image or two and few phrases. We will give you all the content to do this job. In fact, each cover will have the same phrase on it (team name, cover title, and school). I’m looking for a great price and fast delivery. Attached is a sample of a cover we would like to clone for one of our covers:

Stationary

March 16th, 2009 No comments

SIZES:

Business card: 2.125 inches by 3.625 inches

Postcard: 4 inches by 6 inches with a 1/4 inch left around all edges

Poster: 39.4 inches wide by 79 inches tall

Banner: 3 feet tall by 5 feet wide

SPECS: The images need to be 300, cmyk

please use adobe illustrator only, no photoshop please

needs to done within 6 hours, must be online on msn throughout the project, i will provide the layout

Bear