AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Multimedia Delphi Problem mit Stretchdraw/SaveToFile (Erstellt 0 KB Dateien)
Thema durchsuchen
Ansicht
Themen-Optionen

Problem mit Stretchdraw/SaveToFile (Erstellt 0 KB Dateien)

Ein Thema von Chris WF · begonnen am 29. Mai 2006 · letzter Beitrag vom 30. Mai 2006
 
Benutzerbild von Chris WF
Chris WF

Registriert seit: 15. Nov 2004
27 Beiträge
 
Delphi 5 Standard
 
#1

Problem mit Stretchdraw/SaveToFile (Erstellt 0 KB Dateien)

  Alt 29. Mai 2006, 15:33
Hi,

ich schreibe ein Programm, das Thumbnails erstellt, dazu benutze ich 2 Arrays of TPicture. Ich lade die Bilder mit LoadFromFile, ändere die Größe mit Stretchdraw und will dann wieder mit SaveToFile speichern. Aber irgendwie klappts nich so ganz. Es kommt zwar kein Fehler, aber ich hab nachher nur 0 KB Dateien im Zielordner...

Hier mal der Code:
Delphi-Quellcode:
     for i := 0 to count-1 do
     begin
          srcpics[i].SaveToFile(dest + '\img' + inttostr(i) + '.jpg');
          h := srcpics[i].Height;
          w := srcpics[i].Width;
          if h < w then
          begin
               p := h / w;
               r.Left := 1;
               r.Top := 1;
               r.Right := twidth;
               r.Bottom := round(p * twidth);
               tpics[i].Bitmap.Canvas.StretchDraw(r,srcpics[i].Graphic);
               tpics[i].SaveToFile(dest + '\t_img' + inttostr(i) + '.jpg');
          end;
          if h >= w then
          begin
               p := w / h;
               r.Left := 1;
               r.Top := 1;
               r.Right := theight;
               r.Bottom := round(p * theight);
               tpics[i].Bitmap.Canvas.StretchDraw(r,srcpics[i].Graphic);
               tpics[i].SaveToFile(dest + '\t_img' + inttostr(i) + '.jpg');
          end;

     end;
(Die Variablen
Delphi-Quellcode:
Global:
var
  Form1: TForm1;
  src, dest: string;
  twidth, theight, rows, cols, count: integer;
  comment: boolean;
  srcpics, tpics: array of TPicture;
Lokal:
var i, h, w: integer;
var p, q: real;
var r: TRect;
  Mit Zitat antworten Zitat
 


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 15:30 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz