Does anyone know of some sample code that shows how Delphi 2010 can read RAW files using its new COM interface to WIC?
I want to read Canon RAW images and then access specific pixels...
|
Does anyone know of some sample code that shows how Delphi 2010 can read RAW files using its new COM interface to WIC? I want to read Canon RAW images and then access specific pixels...
| |||
|
feedback
|
|
This is the simplest usage:
There are many, many, many different types of "raw" image file formats, so there is no telling if WIC will be able to handle it. | |||||||||||
feedback
|
|
TPicture is very tricky to work with, when you access the Graphic property it does not check anything. To make Nick's code work you can force the Picture to create a bitmap first:
It would be nice if the TPicture class was more succesful in hiding its implementation details :-) | |||
|
feedback
|
|
Nick's answer was correct after all! I went back looked more closely and found the exception was occurring on the Assign statement ... because the TImage on my form didn't have a Picture! Assigning any picture in the IDE Object Inspector or initializing it in a way similar to my code below made it work great! The code below will convert a RAW file to a BMP file. I haven't worked much with images, so I'm not absolutely certain that the code below is correct, but it seems to be working. Feedback welcome. Reminder to other developers: my earlier comment above has links to a great source of sample RAW files and codecs. These are invaluable. Thanks, Nick, AND Embarcadero!!!
| ||||
|
feedback
|
|
Having loaded the Canon RAW Codec, rc170upd_7l.exe, from http://www.usa.canon.com/cusa/windows_vista/cameras/eos_slr_camera_systems/canon_raw_codec_software#DriversAndSoftware, this displays an image in Delphi 2010 on XP SP3:
| ||||
|
feedback
|