Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2005.07.18;
Скачать: CL | DM;

Вниз

Ошибка при переводе Bmp в Wmf   Найти похожие ветки 

 
Dr. Genius   (2005-06-27 16:06) [0]

В переменной Bmp типа TBitmap хранится изображение с разрешением 800х600. Перевожу Bmp в Wmf по коду, выложенному ниже. Получается Wmf-файл с разрешением не 800х600, а 797х597. Почему так происходит и как решить эту проблему.

var
 Bmp: TBitmap;
 Metafile: TMetafile;
 MfCanvas: TMetafileCanvas;

...
...

 Metafile := TMetaFile.Create;
 Metafile.Width := Bmp.Width;
 Metafile.Height := Bmp.Height;
 MfCanvas := TMetafileCanvas.Create (Metafile, 0);
 try
   MfCanvas.Draw (0, 0, Bmp);
 finally
   MfCanvas.Free;
 end;
 Metafile.SaveToFile (‘Image.wmf");
 Metafile.Free;


 
-=XP=- ©   (2005-06-27 16:10) [1]

А визуально как? Обрезает или сжимает?


 
-=XP=- ©   (2005-06-27 16:11) [2]

И вообще, зачем этот перевод? Все равно растр хранится (если WMF это вообще позволяет - не помню).


 
Dr. Genius   (2005-06-27 16:50) [3]


> А визуально как? Обрезает или сжимает?


Сжимает.


> И вообще, зачем этот перевод? Все равно растр хранится (если
> WMF это вообще позволяет - не помню).


Я пишу программу для захвата экранных снимков с последующим сохранением их в файлы. Чем больше форматов будет поддерживаться программой - тем лучше.


 
lookin ©   (2005-06-27 17:06) [4]

Я не уверен, но:

constructor Create(AMetafile: TMetafile; ReferenceDevice: HDC);

Create sets the size of the TMetafile object from ReferenceDevice if it does not already have the MMHeight and MMWidth properties set. Create then creates a metafile device context, and sets the Handle property to its handle. All subsequent drawing methods will draw to the metafile device context.

И при этом:

property MMWidth: Integer;

MMWidth is used for a more accurate reading of the horizontal size of the graphic. The Width property, by contrast, is always in screen device pixel units; to avoid loss of precision in converting between device pixels and millimeters, set or read the dimensions in millimeters with MMWidth. The MMWidth property is always in screen device pixel units.

Может быть, эти две сточки из кода убрать?
Metafile.Width := Bmp.Width;
Metafile.Height := Bmp.Height;



Страницы: 1 вся ветка

Текущий архив: 2005.07.18;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.024 c
1-1120317333
Brack
2005-07-02 19:15
2005.07.18
Как програмно вывести N обьектов


14-1119443440
Магнум
2005-06-22 16:30
2005.07.18
Windows Task Manager в Windows XP


4-1116593693
Rius
2005-05-20 16:54
2005.07.18
Панели групп как в Windows Explorer через MS Visual Styles API ?


11-1102698214
uuzh
2004-12-10 20:03
2005.07.18
2 ECM: Насколько реально перепилить KOLIB под Kylix3 ?


9-1111140209
qwe
2005-03-18 13:03
2005.07.18
3D-город (GlScene)