Posts Tagged ‘Resizer’

Now again. Batch Image Resizing Software. And is based on ImageConverter made of Eric-Paul. Unlike his version, this one save your images to JPEG.

ImageResizer

Image Resizer

The source code, I could not manage is the following.

CheckForIllegalCrossThreadCalls = false;

I got Error message.
Since I am using “BackgroundWorker”, I hope it goes well.

Anyway, it’s very fast to scale your images.
There seems to be some mysterious features of Windows, and it’s magically save JPEG image format. It was not necessary to enter specific values for compression or anything, just the size.
Then voila. You have it.

And this part, I wanted to do something to avoid errors, because the user can delete digits.

numberupdown

NumberUpDown

But it was actually difficult.
Anyway, after many hours of hassle, I tried the test and see what happens. And look at that, it said nothing and worked just fine.
When I checked the saved images, the scale was changed to the default size (- 1024 pixels in this case), the value I wrote in the “numericUpDown” properties.

I wrote the code as follows:


string s = numericUpDownMaximum.Value.ToString();
if (s == "")
{
 MessageBox.Show("You must input the Max value.", "Max width is empty", MessageBoxButtons.OK, MessageBoxIcon.Stop);
 return;
}
else
{
 MessageBox.Show(s, "Max width is not empty", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}

And ran the program. I deleted numbers, and tested. Then answered the “1024″.

Wise Microsoft again! It is without saying anything but “Handled”.

If you want, you can download it from here.

Read the rest of this entry »

Web Resizer – Image Resizing Software for Internet has been updated to version 1.0.6.611.

This is a maintenance release.

Download

Read more about this software