| Thread | Last Post | Replies |
|
| Number of pages in tiff file... | 31 Dec 2005 05:53 GMT | 2 |
Trying to determine the number of pages in a tiff file. I'm assuming System.Drawing calls pages frames. Here's what I have now, although it clearly doesn't work: Dim img As Image
|
| PrintPreviewControl not working on some machines | 31 Dec 2005 00:10 GMT | 4 |
I have subclassed the PrintDocument class and overridden OnBeginPrint and OnPrintPage to create a reusable class for reports. My app displays these reports in a PrintPreviewControl. Everything works fine on my XP Pro SP2 (Framework v2.0) dev machine.
|
| Question on the use of other webpages to generate temporary graphi | 29 Dec 2005 18:50 GMT | 6 |
I keep seeing references (from a number of MVPs among others) about how one can generate temporary graphics by pointing the ImageURL of a control to a web page rather than fixed location. Could someone give me a coherent example? So far I'm stumped. I really
|
| Resizing gif down. Quality suffers. | 29 Dec 2005 13:54 GMT | 2 |
I'm writing some file upload code using C# for users on my website. If the image is too large I want to resize it smaller to a thumbnail size. It's working fine for jpegs but the thumbnails of the gifs look pretty bad.
|
| Adding Image Types | 29 Dec 2005 12:52 GMT | 1 |
Are there examples/samples of adding new image types that can be read/written via the System.Drawing.Image class? I've got a custom image type and would rather not have to load it by creating a Bitmap object, calling LockBits, modifying the bits, and then calling UnlockBits.
|
| crop with selection | 27 Dec 2005 02:08 GMT | 2 |
Hello to erveryone, i'v an imgPicBox where i've loaded an image. I want crop this, but i would use a graphic selection (photoshop mode for ex.). It's possible? I must use a pen and make a rectangle on image or i can
|
| path information | 26 Dec 2005 15:06 GMT | 4 |
Defining an image file like below worked in vb2003: e.Graphics().DrawImage(System.Drawing.Image.FromFile("QC2Invoice.png"), e.Graphics.VisibleClipBounds) "QC2Invoice.png" in ../bin/release
|
| Image Processing | 23 Dec 2005 23:08 GMT | 2 |
I am looking at writing an application (in VB.NET) to find and flag colours used in an image. What is the best way to go? Peter W.
|
| Rotating | 22 Dec 2005 18:55 GMT | 2 |
I have a print document that has a graphics object as such: Private Sub PrintDocument1_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage Dim AGraphic as Graphics = e.Graphics
|
| Can't create font anymore | 22 Dec 2005 10:20 GMT | 2 |
Exception when creating a Font object: An unhandled exception of type 'System.ArithmeticException' occurred in system.drawing.dll Additional information: Overflow or underflow in the arithmetic
|
| Drawing Optimization advice wanted! | 21 Dec 2005 18:00 GMT | 1 |
I'm looking for your suggestions on how to optimize my control draw routines... I know that the most important thing in optimization is to draw only needed parts (which is passed as ClipRectangle) but I'm having difficulties for
|
| ImageCodecInfo | 21 Dec 2005 17:55 GMT | 1 |
What are ImageCodecInfo classes? Can tehy make your images (gif, jpeg, etc.) better or why to use them? I made a (another) screen capture program and notice that captures could be better. Could ImageCodecInfo class make screen capture picture
|
| How to correctly invalidate region on DesktopWindow? | 21 Dec 2005 17:50 GMT | 1 |
Using a mousehook I am drawing the mouse coordinates on the desktopwindow when a user hovers the mouse over a certain control. The problem I am having know I need to invalidate the region where I am drawing the coordinates, thus I need to invalidate a specified region on the ...
|
| Getting hold of graphics drawn on control? | 20 Dec 2005 10:47 GMT | 3 |
I'm capturing data from a lab instrument and drawing graphs and things onto a picturebox. I then want to be able to save the resulting image. How do I get a handle (or something) to what I have drawn? Or do I need to create an image object and re-draw it all onto that? Surely ...
|
| convert 1 bit image to greyscale | 19 Dec 2005 18:31 GMT | 3 |
I have a 1 bit images (scanned page) and want to display it in greyscale with bilinear to help it look much better when displayed I have looked at Bob Powell's site and played around with the "Create high qaility thumbnail images" sample, but I need to have the page in the same
|