image

Dev Express RibbonControl Image Size

Is there any way to change the size of the image in a ribbon control. It is autosizing my images smaller than I would prefer, is this changeable? ...

PNG Compression

Some PNG images although just 150px x 160px wide have 60KB filesize. I've already run them though optimizers (ImageOptim for Mac) but that didn't help much. Is there any way to compress it further, either manually or using some other tool? 60KB for a normal 150x160 image is really unacceptable and I can't use JPG or GIF there because I...

iPhone image memory leak

Hi Everyone, We have a code like this NSData* imageData; UIImage* imageForData; UIImageView* imageView; NSData* imageData; UIImage* imageForData; UIImageView* imageView; CellWithId * cell = [[CellWithId alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier]; CGRect frame; frame.origin.x = 5; frame.origin.y = 0; frame.si...

Image GDI+ Error c#

First sorry for the english. I'm having an strange problem when I'm trying to save a bitmap ("Generic GDI+ error") from a picturebox in my win app, I know that this problem occurs when trying to save to a directory that has no permission, but in this case I'm trying to save it to a memoryStream. using (MemoryStream fotoStream = new Memo...

Display 360 Image in Silverlight 3.0 (Not Panorama)

I have a lot of images taken from a 360 camera which I would like to be able to display in Silverlight 3. They are NOT regular panorama images. The camera which took the image actually creates a distorted jpeg that becomes undistorted once wrapped around a sphere as a texture. I have desktop software that will allow viewing of the image ...

Removing shadows from white clear surface

I have an image of an object taken in a studio. The image is well lighten from multiple sources and stands on a mate white background. the background is also lighten. Most of the shadows that fall on the background are eliminated by the lights but there are still very little light shadows that I would like to remove. Until now, the onl...

ways to add text to an image

In my C++ program, I want to be able to add some text over an image. I can already load/save the image, I just need to add text to it. I want to be able to use different fonts, colors, italics, bold, solid/transparent background, have a border around the letters, etc. I've done this in the past by using the old MFC functions to genera...

JScrollPane setViewPosition After "Zoom"

The code that I have here is using a MouseAdapter to listen for the user to "draw" a box around the area of an image that they would like to zoom in on and calculate the ratio of the box to the image. It then resizes the image to the calculated ratio. This part works. The issue that I am having is making the JScrollPane view appear as i...

Any online resources for web control images?

I have found plenty of icons online, but have yet to find images for other types of controls except 1-off examples. For example - buttons, tabs, dropdown menus, sliders, table headers, panel headers, etc. I've found plenty of tutorials, but our attempts always look bad in comparison (particularly for buttons and tabs). Are there any f...

iPhone SDK: Tell UIWebView not to load images and CSS just plain HTML and JS?

Is there any way to tell a UIWebView not to load images and CSS for faster rendering? Solution: URL filtering for UIWebView on the iPhone ...

Image Extraction From PDF Document using Adobe Acrobat 5 API and .NET

I have seen tons of articles all around the web but nobody describes exactly how to use Adobe Acrobat 5 API with .NET to automate Image Extraction From a lst of PDF documents. Can anyone please help ? ...

So I learned how to make images expand and contract (x,y). Is there a way for me to rotate them?

I have this code for expanding and contracting images in a sexy manner. I'd like to add a little rotation in there, just to make the image pop up, you know? Where/how do I add rotation animations to control? <Style.Triggers> <EventTrigger RoutedEvent="Image.MouseEnter"> <BeginStoryboard> ...

Implementing XOR in a simple image encryption method.

So with the help of you guys I finished creating my very simple image encrypter. It's enough to keep any non-tech person out, right? :P Now to the next step. Someone suggested I use XOR. I read about XOR and it's basically a logical table that determines what the answer is between two bits, right? Only when one is true, the statement i...

How to generate an image from text on fly at runtime

Can anyone guide how to generate image from input text. Image might have any extension doesn't matter. ...

how to organize images in threads?

im developing a forum and users will be able to upload pictures. i wonder how i should organize the folders for this? should they be sorted by threads or users? but how will they then be organized within these folders? and how could i couple some post's pictures to the database entry? eg, if the post got 5 images uploaded, should i ha...

php: recreate and display an image from binary data

Is it possible to recreate images from binary data (process them if needed) and display them, all in the same script? Something like // get and display image 1: $imagedata1 = file_get_contents('assets/test.png'); $imagedata1 = process_using_gd_or_something($imagedata1); echo "<img src={$imagedata1} >"; // <-- IS THIS (OR EQUIVALENT) PO...

Storing and retrieving images with MVC and Sql Server

I am designing an prototyping an app the needs to store images, similar to facebook. This will be a public facing site and I am not sure how many users I will end up with but what I am looking for is a way to efficiently retrieve them. So far I am thinking of storing them in SQL Server varbinary columns. Is this a good idea? I have the ...

jquery text with image rotation

How can i rotate an image with some associated text in jquery? ...

Yet another IE image alignment issue: Float right inside right text-align wackiness

I have an <a> element set to display:block, inside of which is some text and a png image. The <a> is set to text-align:right and the image is set to float:right. It's fine in all browsers except IE (8, but haven't tried with earlier versions of IE), which displays the image below the text. If I do the old negative margin trick, it overl...

How to update ASP.NET image periodically using image processing page?

Hi, I develop an ASP.NET three-tear web application. The server side receives a stream of image data (JPEG frames as byte arrays). It processes them and sends the images to the client side periodically. For displaying these images on the client side I tried to use an approach similar to this described in the post “Improve your Imag...