VoyForums
[ Show ]
Support VoyForums
[ Shrink ]
VoyForums Announcement: Programming and providing support for this service has been a labor of love since 1997. We are one of the few services online who values our users' privacy, and have never sold your information. We have even fought hard to defend your privacy in legal cases; however, we've done it with almost no financial support -- paying out of pocket to continue providing the service. Due to the issues imposed on us by advertisers, we also stopped hosting most ads on the forums many years ago. We hope you appreciate our efforts.

Show your support by donating any amount. (Note: We are still technically a for-profit company, so your contribution is not tax-deductible.) PayPal Acct: Feedback:

Donate to VoyForums (PayPal):

Login ] [ Contact Forum Admin ] [ Main index ] [ Post a new message ] [ Search | Check update time | Archives: 123456[7]8910 ]


[ Next Thread | Previous Thread | Next Message | Previous Message ]

Date Posted: 17:31:04 08/10/01 Fri
Author: Michel
Subject: Re: Also problems with graphic dimensions
In reply to: Kai Peters 's message, "Also problems with graphic dimensions" on 13:43:46 08/10/01 Fri


Hi Kai,

You are creating a TDibGraphic, then calling LoadFromFile. The base class TDibGraphic does not "know" any file formats. You need to use a derived class.

Here is a routine that should work:

procedure GetGraphicSize( const FileName : String;
var Width : Integer;
var Height : Integer );
var
Graphic : TDibGraphic;
begin
Width := 0;
Height := 0;
Graphic := NewDibGraphic(FileName);
if Graphic = nil then
Exit; { not a registered graphic format }
try
Graphic.LoadFromFile(FileName);
Width := Graphic.Width;
Height := Graphic.Height;
finally
Graphic.Free;
end;

end;

Note that NewDibGraphic is used instead of TDibGraphic.Create. NewDibGraphic returns a graphic object related to the type of file, ie, jpg, png, ...

Best regards,

Michel
>Michel,
>
>I wanted to write a fairly generic function to obtain
>graphics' dimensions. Why does my approach from below
>always returns '0'?
>
>Thanks,
>Kai
>
>
>
>function ObtainGraphicDimensions(graphicfile: String;
>wantedval: Char): Integer;
>var
> dgr: TDibGraphic;
> ext: String;
>
>begin
> ext := Uppercase( ExtractFileExt( graphicfile));
> Result := 0;
> //
> if FileExists( graphicfile) and ((Pos( ext,
>'.PNG.JPG.JPEG.BMP') > 0)) then
> begin
> try
> dgr := TDibGraphic.Create;
> dgr.LoadFromFile( graphicfile);
> //
> if (ext = '.PNG') then
> Result := iif( Upcase( wantedval) = 'H',
>TPngGraphic( dgr).Height, TPngGraphic( dgr).Width)
> else if ((ext = '.JPG') or (ext = '.JPEG')) then
> Result := iif( Upcase( wantedval) = 'H',
>TJPEGGraphic( dgr).Height, TJPEGGraphic( dgr).Width)
> else // must be BMP
> Result := iif( Upcase( wantedval) = 'H',
>(BitmapGraphic( dgr).Height, TBitmapGraphic(
>dgr).Width);
> finally
> dgr.Free;
> end;
> end;
>end;
>
>function iif(cond: Boolean; tval, fval: Variant):
>Variant;
>begin
> if cond then
> Result := tval
> else
> Result := fval;
>end;

[ Next Thread | Previous Thread | Next Message | Previous Message ]

[ Contact Forum Admin ]


Forum timezone: GMT-5
VF Version: 3.00b, ConfDB:
Before posting please read our privacy policy.
VoyForums(tm) is a Free Service from Voyager Info-Systems.
Copyright © 1998-2019 Voyager Info-Systems. All Rights Reserved.