Click here to Skip to main content
15,888,283 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ Get File Size Pin
Code-o-mat4-Sep-09 8:25
Code-o-mat4-Sep-09 8:25 
GeneralRe: C++ Get File Size Pin
Joe Woodbury4-Sep-09 8:31
professionalJoe Woodbury4-Sep-09 8:31 
GeneralRe: C++ Get File Size Pin
Jim Fell4-Sep-09 10:24
Jim Fell4-Sep-09 10:24 
QuestionZooming image without loosing quality Pin
tealomp4-Sep-09 6:31
tealomp4-Sep-09 6:31 
AnswerRe: Zooming image without loosing quality Pin
includeh104-Sep-09 12:08
includeh104-Sep-09 12:08 
GeneralRe: Zooming image without loosing quality Pin
harold aptroot4-Sep-09 12:16
harold aptroot4-Sep-09 12:16 
GeneralRe: Zooming image without loosing quality Pin
Chris Losinger5-Sep-09 6:03
professionalChris Losinger5-Sep-09 6:03 
AnswerRe: Zooming image without loosing quality Pin
Chris Losinger5-Sep-09 6:00
professionalChris Losinger5-Sep-09 6:00 
tealomp wrote:
the problem is when I zoom in too much I get the blocky, pixelation associated with .bmp files


that's not BMP files, that's just what you get when you zoom in on a raster-based image. at some point, there's just not enough information in the original file to zoom in any further - there's no way to interpolate any more data between the source pixels and you end up magnifying the source pixels themselves. this is true regardless of the source of the image or the algorithm used to zoom (though some algorithms are better than others).

tealomp wrote:
what I should do to keep the fidelity of the image a any zoom level


there is no way to do such a thing with a raster-based image.

on the other hand, vector-based images can scale to any size. or, you could do something like MrSID, which is an image format that blends images of multiple resolutions to allow for smooth zooming over a large range. it's used primarily for satellite data.


QuestionA problem, please help. Pin
kingkongcn4-Sep-09 4:17
kingkongcn4-Sep-09 4:17 
AnswerRe: A problem, please help. Pin
Nuri Ismail4-Sep-09 4:24
Nuri Ismail4-Sep-09 4:24 
AnswerRe: A problem, please help. Pin
Cedric Moonen4-Sep-09 4:31
Cedric Moonen4-Sep-09 4:31 
AnswerRe: A problem, please help. Pin
Michael Schubert4-Sep-09 6:53
Michael Schubert4-Sep-09 6:53 
JokeRe: A problem, please help. Pin
David Crow4-Sep-09 7:01
David Crow4-Sep-09 7:01 
GeneralRe: A problem, please help. Pin
Michael Schubert4-Sep-09 7:04
Michael Schubert4-Sep-09 7:04 
GeneralRe: A problem, please help. Pin
Cedric Moonen4-Sep-09 7:12
Cedric Moonen4-Sep-09 7:12 
QuestionIn printer driver, how can I make sure DrvLoadFontFile is called? Pin
sashoalm4-Sep-09 3:29
sashoalm4-Sep-09 3:29 
QuestionTo get the Cursor position Pin
prithaa4-Sep-09 2:58
prithaa4-Sep-09 2:58 
AnswerRe: To get the Cursor position Pin
Iain Clarke, Warrior Programmer4-Sep-09 3:05
Iain Clarke, Warrior Programmer4-Sep-09 3:05 
AnswerRe: To get the Cursor position Pin
Cedric Moonen4-Sep-09 3:08
Cedric Moonen4-Sep-09 3:08 
GeneralRe: To get the Cursor position Pin
prithaa4-Sep-09 3:13
prithaa4-Sep-09 3:13 
GeneralRe: To get the Cursor position Pin
prithaa4-Sep-09 23:57
prithaa4-Sep-09 23:57 
QuestionUsing a static library (.a) build with gcc Pin
KNSetting4-Sep-09 2:00
KNSetting4-Sep-09 2:00 
AnswerRe: Using a static library (.a) build with gcc Pin
Stuart Dootson4-Sep-09 2:35
professionalStuart Dootson4-Sep-09 2:35 
AnswerRe: Using a static library (.a) build with gcc Pin
KNSetting4-Sep-09 6:59
KNSetting4-Sep-09 6:59 
GeneralRe: Using a static library (.a) build with gcc Pin
Stuart Dootson4-Sep-09 8:52
professionalStuart Dootson4-Sep-09 8:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.