The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
6k views

Programatically adding Images to RTF Document

I am trying to add a image to a RTF document which I am creating. I would prefer to not use 'copy/paste' methods (that involve pasting the image within a RichTextBox and then accessing the .RTF ...
6
votes
3answers
1k views

Website Image Formats: Choosing the right format for the right task

When designing a website, what do you consider the best image format to use for a particular task? I always find myself in a dilemma when trying to figure out what format to use for a specific ...
3
votes
5answers
4k views

Access PNG Metadata

How can I access/remove PNG metadata? I'm looking for a Mac application or a PHP snippet.
2
votes
1answer
79 views

Can Cairo (the graphics library) be used to render mathematical formulas and pictures (latex style)?

Does it need any dependencies for full-fledged unicode character rendering, or can it read and render any platform's (Linux/Max/Windows) native font glyphs without much problems? Can it import/render ...
2
votes
1answer
121 views

Png Image support of J2ME WTK Emulator

I use a png image in my project that is not displayed in emulator but it can be displayed in phone. Then i open it with photoshop, save as png and use that image. It is displayed both emulator and ...
2
votes
3answers
468 views

Detecting image type from base64 string in PHP

Is it possible to find out the type of an image encoded as a base64 String in PHP? I have no method of accessing the original image file, just the encoded string. From what I've seen, ...
2
votes
1answer
216 views

KOFAX Bitmap Files : How can I open them?

My C# application receives image files from KOFAX VRS TWAIN driver in TWSX_FILE mode, but neither my own .NET based application nor Windows default image viewer can open these files. However, Adobe ...
2
votes
2answers
245 views

What is the best way to load a CCITT T.3 compressed tiff using python?

I am trying to load a CCITT T.3 compressed tiff into python, and get the pixel matrix from it. It should just be a logical matrix. I have tried using pylibtiff and PIL, but when I load it with them, ...
2
votes
6answers
255 views

What Image format should I use for barcodes created on the fly

I'm creating barcodes on the fly, and embedding them in web pages. What format should I use? I'm wavering between JPG and PNG, and I don't really understand the advantages of both. Size matters in ...
2
votes
1answer
4k views

Insert Image in WPF RichTextBox

Hi there im using the following code for insert text and images, but I want to insert the image "behind text" as Image>Adjust with Text property in MSWord { int numeroInforme = ...
1
vote
0answers
33 views

WebP image format on iOS

I’m currently researching the possibility to use Google’s WebP image format in our iOS software. I found it’s not hard to decode the WebP into RGBA8888 as needed using the google’s C-library. ...
1
vote
2answers
143 views

Create empty (0x0) image

I'm trying to figure out a way to create a zero-width, zero-height image which would conform to the standard of whichever format works. I've already tried the Windows Bitmap (BMP) format (54-byte ...
1
vote
1answer
155 views

Best image format for images with color gradients?

This is not totally a programming question, but I think this is best place to ask. The front page of my website has a nice banner, where more than half the image is a "gradient" of a color, and there ...
1
vote
2answers
184 views

Directory.GetAllImageFiles How should i do it?

I would like to get fill a String array with all the images found within a directory. Till now i use the following to get all the images with jpg format Dim List() as string = ...
1
vote
5answers
104 views

How is HDR data stored?

I am wondering what the data structure is behind storing images with HDR data. I understand how regular images (rgba) and cubemaps are stored. I doubt its as simple as storing multiple images at ...
1
vote
2answers
736 views

If I have an iPad app with lots of images, is PNG still the best option?

I am working on an iPad application which has hundreds of photo-quality images. I would have naturally assumed to store these images as JPEGs so as to optimize the app file size. However, Apple's ...
1
vote
1answer
417 views

Preferred Image format for use in WPF?

As per the title, what's the preferred image format (or formats) for use in WPF? My company will hire a designer to design some logos, images, toolbar icons, etc. for use in a WPF application. I was ...
0
votes
1answer
24 views
+50

How do you set a Camera to take its images in .mpo format?

In my application, I have a SurfaceView showing a Camera preview, and want to use the stereoscopic camera on my phone to take 3D pictures (for the curious, the app has a novelty viewfinder). The ...
0
votes
3answers
194 views

Android YUV Image format

In our application, we need to transfer video, we are using Camera class to capture the buffer and send to destination, I have set format is YV12 as a Camera parameter to receive the buffer, for ...
0
votes
1answer
198 views

Loading texture doesn't work with the correct texture width/height

I am trying to load a texture for a cube and I have trouble with the dimensions I use. The texture has the power of two (256x256). When it should use 256 as width and height it throws an exception: ...
0
votes
1answer
1k views

error RC2175 : resource file res\icon3.bmp is not in 3.00 format?

HI, what does this mean, and how to resolve it? error RC2175 : resource file res\icon3.bmp is not in 3.00 format
0
votes
2answers
237 views

Remove GIF image background to match Original background in GWT?

So I have an image (GIF) with a blueish background and a circle (which i want to keep), I would like to remove the blueish background and ( or show the origin color of the back ground it sites on or ...
0
votes
3answers
283 views

image format in html and latex

I want to choose an image formate for including images in both html and latex. I found that jpeg and png formates are not always working well in latex. Is eps format the best for latex. It seems eps ...
0
votes
1answer
527 views

Creating gif/bmp files with flex

public function bmdToStr(bmd:BitmapData,width:int,height:int):String { var encoder:JPEGEncoder = new JPEGEncoder(); var encBytes:ByteArray = encoder.encode(bmd); return ...
0
votes
1answer
79 views

Tool/Library for finding multiple assigned color profiles of an image other than photoshop?

I read here that when sending an image for print it can have multiple color profiles assigned to it, which will cause a difference in color between what is displayed on your monitor and what is ...
0
votes
2answers
495 views

Multipart tiff and EXIF metadata

In the tif format, when you add EXIF meta data it creates an new IFD (tif-direcory) and stores the exif metadata as fields. So when parsing a tif file with a single image and exif data is easy. But ...
0
votes
4answers
109 views

Deciding which image format to use

I'm working on a web application that will allow users to upload profile pictures (avatars, basically). These images will be no bigger than 100 x 100 pixels and will be pictures of peoples' faces. We ...
0
votes
6answers
220 views

If I take a loss-compressed file and save it again (e.g. JPEG) will there be loss of quality?

I've often wondered, if I load a compressed image file, edit it and the save it again, will it loose some quality? What if I use the same quality grade when saving, will the algorithms somehow detect ...