Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
1k views

Alternatives to System.Drawing for use with ASP.NET?

After several days of tracking down bizarre GDI+ errors, I've stumbled across this little gem on MSDN: Classes within the System.Drawing namespace are not supported for use within a Windows or ...
6
votes
4answers
1k views

What quality level does Image.Save() use for jpeg files?

I just got a real surprise when I loaded a jpg file and turned around and saved it with a quality of 100 and the size was almost 4x the original. To further investigate I open and saved without ...
4
votes
1answer
189 views

Any good source of explanatory documentation on ColorMatrix?

I'd like to try using ColorMatrix, but am only able to find examples that convert an image to grayscale. And even then, they tend to be presented as a chunk of 'magic numbers' code with no ...
3
votes
2answers
434 views

How to avoid useless white border in resized PNG with transparent background?

I have a folder containing about 2500 PNG images, with no transparency. Every image is about 500 x 500 (some are 491 x 433, others 511 x 499 etc). I want to programatically downsize every image to ...
2
votes
4answers
440 views

File extension from System.Drawing.Image

I'm writing a method that needs to save a System.Drawing.Image to a file. Without knowing the original file the Image was created from, is there anyway to determine what file extension it should have? ...
2
votes
1answer
475 views

Determine if Alpha Channel is Used in an Image

As I'm bringing in images into my program, I want to determine if: they have an alpha-channel if that alpha-channel is used #1 is simple enough with using Image.IsAlphaPixelFormat. For #2 though, ...
1
vote
3answers
107 views

Image.Save can not over write images in Win7

I'm trying to save a image into a local drive using Image.Save method. It works fine in other OS but I see only problem in Win7. In Win7 it can't overwrite existing images, even it does not throw any ...
1
vote
2answers
497 views

how to draw in asp.net(c#)?

how to draw next image with labels in rectangles? thanks for help:
1
vote
2answers
43 views

Is it a Bitmap or MetaFile?

Given a Stream that I know will be a picture, is there a way to programmatically determine if it is a Bitmap or a MetaFile when pulled from Image.FromStream(mystream)? Like a flag or something. ...
1
vote
4answers
522 views

Programmatically replace transparent regions in an image with white fill?

I've got a PNG image that I'm operating on via the System.Drawing API in .NET. It has large transparent regions, and I would like to replace the transparent regions with white fill--so that there are ...
1
vote
2answers
1k views

Get ImageFormat from System.Drawing.Image.RawFormat

This code fails when trying to call Image.Save(MemoryStream, ImageFormat). I get the exception "a Value cannot be null.Parameter name: encoder": ImageFormat format = ...
1
vote
1answer
256 views

How to draw centered text onto a jpg using system.drawing in c#

I am using the following code to draw text onto a jpg image but it requires x/y coordinate percision on where to place the text. var bmp = new Bitmap("C:\\testing\\Given.jpg"); var gra = ...
1
vote
4answers
258 views

passing the right BytesArray into the MemoryStream for Image

there a way to determine that I am passing the right byte array to the MemoryStream if I want to create an Image out of byte array. MemoryStream mStream = new MemoryStream(); mStream.Write(byteArray, ...
1
vote
3answers
581 views

Converting a GUID to System.Drawing.Imaging.ImageFormat

I store information about images in a database - also their ImageFormat (jpeg, png etc). Console.WriteLine(System.Drawing.Imaging.ImageFormat.Jpeg.Guid); Outputs: ...
0
votes
1answer
220 views

Reading/preserving a PixelFormat.Format48bppRgb PNG Bitmap in .NET?

I've been able to create a Format48bppRgb .PNG file (from some internal HDR data) using the the following C# code: Bitmap bmp16 = new Bitmap(_viewer.Width, _viewer.Height, ...
0
votes
2answers
409 views

System.Drawing.Image EntityType 'Image' has no key defined. Define the key for this EntityType

I'm using EF Code First and Data Scaffolding and have an entity that contains a property of type public System.Drawing.Image Image { get; set; } When initialsing the DB context to create the DB i ...
0
votes
2answers
160 views

Working with bitmap, to draw when we touch the screen with finger and drag all over

I want to note lectures on my android, so writing an application for this, so I want to know 3 things that how they are done: Noting the lecture using touchscreen with finger/pen Storing it in any ...
0
votes
1answer
97 views

System.Drawing.Imaging-like interface for Cocoa/iPhone image manipulation

I'm looking for an image manipulation library for the iPhone/iPad, with similar functionality like System.Drawing.Imaging on the .net side. Things I want to do: draw basic shapes, like elipses, ...
0
votes
0answers
84 views

Getting a portion of a Drawing Cache

I have a web based app that will scroll photos, and allows the user to set the photo they like the most as their phone's wallpaper. i want to limit the size of the drawing cache, like taking a section ...
0
votes
2answers
241 views

How do I modify/add metadata to System.Drawing.Image file

Business purpose: I'm creating a CMS, and allowing the user to "delete" images that they've previously uploaded to the server. Issue: if I allow them to really delete the images, they are left with ...
0
votes
1answer
984 views

Image.Save() on MemoryBmp to TIFF with EncoderParams - How?

I have an application that allows a user to define a region of an image and save that region to file. I have run up against a snag that I can't sort out. The Bitmap that I create to paint the ...
0
votes
2answers
465 views

How to serve up image from type System.Drawing.Bitmap (<img> tag?)

I am sending a bitmap to a View in ASP.NET MVC. I have a property in my ViewModel: public Bitmap TemplateImage { get; set; } In my View, I want to be able to render that Bitmap image but I can't ...
0
votes
3answers
273 views

How to draw text onto a jpg and resave it using system.drawing in c#

Anyone have good example of how to write text onto a jpg image and resave it using System.Drawing in .NET?
0
votes
1answer
46 views

Using a System.Drawing.Image as the centered part of a larger image?

I have a System.Drawing.Image that I would like to use as the centered portion for a new, larger image. I’m given the dimensions of the (always) larger image and the idea is to make that image all ...
0
votes
3answers
76 views

Assuming ASP.NET and form upload, any way to ensure file is an image?

Is there any way to tell if the file is an image either through MIME type or some other way of inspection? The images are going into a gallery and I'll be resizing them as necessary and want to ...
0
votes
1answer
590 views

Changing System.Drawing.Bitmap.Palette

I have a TIFF file in memory, which I obtained by a variant of the following code: Image myImage = Image.FromFile("somefile.tiff"); Currently, myImage.Palette only returns two colors, black and ...
-1
votes
1answer
128 views

vb.net LED BOARD DISPLAY user control

I am developing LEDBOARD user control in vb.net.I have done it also .Actually its taking too much time to load .In the vb6 same application I am loading 3000 labels using a label control array but not ...