|
-
Feb 24th, 2000, 05:45 AM
#1
Thread Starter
New Member
I need a way to save graphics from the clipboard (screenprints) to a designated area in a file format smaller than bmps. JPEGs are the best I can think of, but I need a way to save them when a button is pressed. We will have a mapped network drive mapped to a specific letter, the saving will need to look at a database and name it according to a series of fields. The database end is not a problem, but I need to know how we can automatically save as something other than a bmp.
Any takers?
Thanks in advance.
-
Feb 24th, 2000, 07:47 AM
#2
Fanatic Member
You could try something like this:
Code:
Private Sub Command1_Click()
SavePicture Clipboard.GetData, "C:\windows\desktop\test.jpg"
End Sub
HTH
-
Feb 24th, 2000, 08:27 AM
#3
Hyperactive Member
GIF vs. JPG
JPEG's give you a lot better quality, but GIF's are a lot smaller.
-
Feb 27th, 2000, 10:31 PM
#4
Thread Starter
New Member
The code is great, it is just what I was looking for, but I was wondering if there is any way to control the file size. I tried a screenprint of a 1600 desktop in jpg bmp and gif and all of them were 5.5 meg, that is pretty big and I would lke to make that as small as possible, anyone know how to make a jpeg lower quality?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|