VS 2008 Making An Image Compressor?

Jun 15, 2009

I'm wondering if it would be relatively not so hard to add some algorithms in my code to shrink the size of images?So say I told my program to add all of My Pictures to it, can I shrink it somehow?WinRar does a nice job, how complex is it lol?What exactly is the process of shrinking the images, I don't quite understand it, (or shrinking anything, music, videos, text)

View 3 Replies


ADVERTISEMENT

[.NET] Exe Compressor - Make 40mb .NET App 10mb Or Less?

Aug 28, 2010

What can I use to make my 40mb .NET app 10mb or less? I tryed netz compressor but that only takes it down to 30mb not to mention the EXE doesn't work after that. Its compiled in .NET Framwork 4.0.

View 4 Replies

Compressor & Decompressor: Mathematical Smallest Combination?

Jul 12, 2009

How to load file and save it as different filename? It saves almost twice the original size for some reason?

Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim iFile As System.IO.File[code].....

Question 02:How to load it as numerical values?

Question 03:How to try applying an array of mathematical functions to the numerical values to see if size reduction is possible: I want to try testing all mathematical functions with any and all mathematical values of smaller size to see if the file can be compressed.

View 5 Replies

Making An Icon Out Of An Image?

Mar 2, 2009

Making an icon out of an image

View 3 Replies

Making An Image Converter?

Sep 4, 2011

I have been practicing, and have created an extremely simple image converter.I want to include some vector formats. The formats that I want to include, but aren't in System.Drawing.Imaging.ImageFormat

are
.ai
.cdr
.dxf

[code]....

How would I go about writing the code, to where they would work? Is there a way to make them recognized?

View 3 Replies

Making An Image Appear After A Button Is Clicked?

May 19, 2011

I've created a label that changes text when I click a button. I also want an image to appear under the label after the button is clicked. I added the image with an image control(not sure if this is correct) and I want it invisible until the button is clicked. What Code Behind should I use for th ebutton.

View 3 Replies

Making An Image Of A Memory Card?

Mar 3, 2011

creating a program in VB.NET that can make an image(.img) of a memory card?

View 5 Replies

Making Image Loading Faster?

Oct 15, 2011

I have made picture viewer in VB which also shows all the pics present in a folder as thumbnails using image list and listbox. The problem is whenever the user clicks refresh it takes long time for the image to load. I want to some how make a cache like thing where i can store the image for faster access in the future.

View 2 Replies

Making Image Array Using Project Resources

Apr 18, 2009

I need to make an array of images using references to the resources folder. The following is my code which does not work:
Dim imgPictures(8) As Image
imgPictures(0) = Image.FromFile(My.Resources.cat_1.ToString)
How do I reference the images sitting in the resources folder for this task?

View 4 Replies

Audio Converter And Compressor - Audio & Video - Dream.In.Code

Mar 13, 2009

I just want to ask or I need some idea on how to convert wav files to mp3 and compressed the file to make the size smaller. I've search on the internet and find vorbis.dll as a reference object and lame.exe for converter. With regards to the audio compression, i downloaded monkey's audio software but doesnt have an idea on how to incorporate it.

View 2 Replies

Making Image Uploader That Connects To Ftp And Send Them In To Public_html?

May 30, 2012

Im making image uploader that connects to my ftp and send them in to public_html.This is the

Public Class upload
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim request As System.Net.FtpWebRequest = DirectCast(System.Net.WebRequest.Create("ftp://ftp.my.details.com/public_html/photos/"), System.Net.FtpWebRequest)

[code]....

View 8 Replies

Making Sprite Class And Cycling Through Image Arrays

Feb 2, 2012

I am using vb.net by the way. From what I understand, Xna is not usable in visual Basic. Therefore, in order to create my characters, I defined a sprite class. Now my question is.... (I am drawing everything using a timer on the form btw by the process of invalidation.)... how do I use time to cycle through the images in an image array while the instance has no focus, and whilst the class inherits the "Control" class? Basically, how do i get these instances to act without user input? I want a character to eventually respond to user input, but I also need npcs that do not need any input in order to move themselves. Also, I need this in such a way that each instance's processes do NOT interfere with the processes of others. So that whatever timing I use does not also stall the whole window/form.

View 2 Replies

VS 2008 Finding If An Image Control Has An Image Loaded (flashing An Image With A Timer)?

Aug 14, 2011

I'd like to verify if an image control has an image loaded . If it does , I want to unload that image (and load no image) , but if the image control has no image loaded , I want to load an image . Is it possible ?

If ImageMY.Image.Equals(Nothing) Then
ImageMY.Image = System.Drawing.Image.FromFile("C:ImageBlaBlaBla.jpg")
Else

[code].....

View 3 Replies

Making A Simple Image Editor And Added Zooming And Drawing With Mouse Position Like A Pencil?

Sep 11, 2009

Im making a simple image editor and I added Zooming and Drawing with mouse position like a pencil. My problem is When I zoom the image and try to draw on it, everything becomes offset and the lines i drew are not even close to the mouse. Here is My code ( Just add a button1 and Picturebox1 with an image)

Public Class Form1
Dim pen1 As Pen
Dim x1, y1, x2, y2 As Integer
Dim gr As Graphics

[code]....

View 4 Replies

VS 2008 - VB BITBLT Equivlant - Build Image By Opening Files With Image Data

Nov 2, 2010

In VB6 you could BITBLT things around before refreshing the screen. In .NET, I'm aware of DrawImage, but that can only be done on a paint event rather than before anything gets painted. The issue I have is, I need to open several files with image data in them and then build a bigger image with those smaller images. Before I could open them, BITBLT them to a Buffer. As far as I can tell .NET offers no way to do this as the only function I've been able to find (DrawImage) only works within the paint event. Is there still a way to do this in VS08 or no?

View 6 Replies

VS 2008 - Image Transparency - Loading A Bunch Of Pictures On Top Of One Image

Oct 14, 2009

Ive been programming in VB6 for years, i figured its time for an upgrade. Here's what im doing, and what the problem is:

Im loading a bunch of pictures on top of one image. They are all PNG files, and some of the images have transparent edges, and some semi-transparency within the image itself.

So basically, i need to be able to load these images on top of the other images, and still maintain the transparency.

Is this possible in VB08? This is one of the main reasons i moved to 08 from vb6, more things possible including multithreading.

View 11 Replies

Designing Software - Making A MPC Sampler - Drum Machine - Making A Sound Directory ?

May 16, 2012

I'm a huge music person (got my own lil record thing going) but I'm wanting to design a program that would make music in my way. I have a decent amount of background knowlege of Visual Basic and Java I'm just wondering how could I execute this whole project. The Project is making a MPC Sampler. MPC is a drum machine; a machine with buttons that once you press it that it will play a sound from a drum (ex: snare, kick, tom, ect.) . So I would want to make some pads on my program that each have their own sound. Total of 16 pads. Which the design wouldn't be hard to make nor would the functionality of it having the play back sound (in my opinoin it wouldn't be hard atleast). But the thing is I wanna map out these pads to number keys on the number pad or keyboard. I'm not so sure how to do that. But that's all the easy stuff...

Also finding information is making a sound directory. What I mean by this is that I want to make a User Interface that will open up a file directory of sounds and the user can select what "kick" or "snare" sound he may want for the kick or snare pad. I don't know how to do that or even know what to search; neverless I don't know if this whole project idea is a good idea for Visual Basic or another programing language.

Also LATER ON I am wanting to add a record and export function that alows users to..well...record and export their beat or instrumental ha. That doesn't seem too too complex (mainly due to the fact that all it needs to do is record the users key strokes and then show them and play the sounds, but obviously it would get more complex than that.)

Here is an image of one of many MPCs but one with a directory - [URL]

View 5 Replies

VS 2008 - If An Image Is In Listview, Will It Display A Thumbnail Of The Image?

Jun 19, 2009

I need to know how to use listview, I'm having trouble using it.What are listviews uses?What can be listed in listview?What cannot be listview?If an image is in listview, will it display a thumbnail of the image?

View 4 Replies

VS 2008 Draw An Image Using A Separate Alphamask Image?

Sep 4, 2011

I want to draw an image onto another image object but use an alphamask specified from another image that is grayscale.

I am drawing an animation manually so don't want to do this pixel by pixel as this would be extremely inefficient.

View 2 Replies

VS 2008 Get The Image Location Of The Image That The Mouse Is Over (Webbrowser)?

Sep 15, 2009

I'm having a problem getting the src of the image the mouse is hovering over in a webbrowser. I can get an href just fine, just not an src. To get the href, I used this

Something = Webbrowser1.Document.ActiveElement.GetAttribute("href")

When I try to do it for an image, nothing happens. How do I get the image location?

View 2 Replies

VS 2008 Open Image + Save Image + Keep Quality?

Oct 3, 2011

I am trying to edit an image. I can open the image with Picturebox1.load(mypicture)

I can change the pixels/edit the picture by Dim img as new bitmap(picturebox1.image)

[Code]...

now here is the weird part. When I save the image the filesize INCREASES..but the picture dimensions are the same Example... TEST.PNG 1.3KB, when opened up via picturebox/saved the image is now 2.3KB

not sure why...i even though I specify system.drawing.imaging.imageformat.PNG

samething with JPG... it actually SHRINKS it evenmore.. example 88KB jpeg.. saved as jpeg is now 47.7KB...

View 7 Replies

VS 2008 - Read A 16bit Binary File (tif Image) And Pixel Values Of The Image Ranges From 1200 To 4500 - EndOfStreamException Unhandled Error

Mar 18, 2012

I am trying to read a 16bit binary file (tif image) and pixel values of the image ranges from 1200 to 4500. I tried to use BinaryReader using ReadUInt16 but I get EndOfStreamException Unhandled error. ReadByte method works fine with an 8bit tif file. I do not know how to read a 16bit image file using binaryReader. Shouldn't I use ReadUInt16 since values of pixels range from 1200 to 4500?

[Code]....

View 10 Replies

VS 2008 Find Image Inside Image?

Jun 8, 2010

Screen and send are both bmps:This is what I've tried so far but it doesn't work

For y = 0 To screen.Height - 1
For x = 0 To screen.Width - 1
If getpixel(screen, x, y) = getpixel(send, 0, 0) Then

[code].....

View 2 Replies

Making A Calculator In VB 2008?

Jan 20, 2010

I have to write a program that allows users to specify two numbers and then adds, subtracts or multiplies them when the user clicks on the appropriate button. The out put should give the aritmatic performed and the result. I inserted an attachment on what it should look like also Public Sub btnCompute_Click() Handles btnCompute.Click " here at this one I am getting an error message Error 1 Statement is not valid in a namespace. C:\Users\Tiffney\Desktop\School projects\WindowsApplication1\Form1.vb 1 1 WindowsApplication1"

[Code]...

View 14 Replies

Making A Patcher Using VB 2008

Jan 1, 2011

I am having some trouble with patching a file in Visual Basic 2008. The idea is like that.

1- Store File In The Program Using "Resources".

2- If The Program Is Runned. My Program Should Show This Message "Please Close The Program" Or Making My Program Close The Program That I want To Patch.

3- If The Program That I want to patch is closed. Then When you click the button. the file dialogue opened and give to user the ability to choose the file that i want to modify "Replace or patched" after that the file will copied from resource and replaced the old file "Patched" after when this operation finished.

4- show this message "Your Program Is Patched. Enjoy", and the resources file should be crypted Waiting The Solution.

View 6 Replies

Making A To Do List In Vb 2008

Feb 9, 2011

I want to create an app that is constantly running and as part of my desktop toolbar. When I mouse over the icon, I want the list to show in front of all other windows on the screan. I, also, want it to fade away once the mouse leaves the icon.If the icon is clicked, the window displays.

I want to be able to click-and-hold the title bar to move it around when the window is displayed. I want the full display of the window to be a check box list with each line being ~25 characters long. At the top of the window, there should always be an open line on top of the list where I can enter a new "task," and hitting the "ENTER" key will save the line and move it down one line, as well as the entire list underneath

The action of ENTERing a new "task" should spawn a new open line at the top of the checkbox where the user can enter a new task. When a box (located to the left in front of each line of text) is checked for a line, that line will disappear."Checking" a box should move every line underneath of the Checked (and thus deleted) line up one line. There should be a "close" or "minimize" (depending on how you keep in to the task bar) button the hide the app when I'm through using it.

View 1 Replies

VS 2008 Making A Button Pad

May 17, 2009

Im making a Program in VB 2008 for Tablet PC's in which you Log in Using a Virtual Keypad. i need to know how to insert a number, like in MS Calculator. (to press a button, and for a number to be added to the text box)

View 1 Replies

VS 2008 Making A Calculator?

Mar 18, 2012

I have a small project from my university they have asked us to make a calculator , well everything is easy so far except the 3 last functions that I need help with.

as we all know vb has already some math functions implemented in its libraries the problem here those functions giving me wrong results I am trying to get math.tan(lblnum.text) math.sin(lblnum.text) and math.cos(lblnum.text)

they don't output the correct numbers any idea why?

View 4 Replies

VS 2008 Making A Line In A DLL?

Aug 22, 2009

VS 2008 Making a line in a DLL?

View 9 Replies

Making Bar-code System In 2008?

Dec 3, 2010

I have made some real time systems (softwares). Now I want to make an system (software) in vb.net 2008 which reads an bar-code saves the data in the database (SQL Server database). I am very new in making these types of system, thus i would like your help of making an system using bar-code scanner through vb.net 2008. Specific to my question I will require all the steps for creating an bar-code system through vb.net 2008. I am waiting for your reply.

View 1 Replies







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