Scale for added bitmap
Moderators: SDS, support, admin
-
- Posts: 10
- Joined: 21 Apr 2011, 17:36
- Location: FRANCE
Scale for added bitmap
Hi,
I need to show a dxf file and add bitmaps on it.
This bitmaps are 16x16 pixels images.
How to be sure the bitmap will be visible and with a good scale compare to scale and zoom of dxf file ?
TIA
Nicolas
I need to show a dxf file and add bitmaps on it.
This bitmaps are 16x16 pixels images.
How to be sure the bitmap will be visible and with a good scale compare to scale and zoom of dxf file ?
TIA
Nicolas
-
- Posts: 39
- Joined: 04 Aug 2011, 11:31
- Location: Russia
Re: Scale for added bitmap
Hi Nicolas,
if you want to add bitmap to existing TsgCADdxfImage object, you should use TsgCADdxfImage.AddScaledDXFEx method. This method adds the drawing as TsgDXFInsert object into the current TsgCADdxfImage. Specify AScale parameter in order to set the scale for added bitmap. You can control visibility of added bitmap using TsgDXFInsert.Visible property or set its scale in the X, Y and Z directions using TsgDXFInsert.Scale property.
Mikhail
if you want to add bitmap to existing TsgCADdxfImage object, you should use TsgCADdxfImage.AddScaledDXFEx method. This method adds the drawing as TsgDXFInsert object into the current TsgCADdxfImage. Specify AScale parameter in order to set the scale for added bitmap. You can control visibility of added bitmap using TsgDXFInsert.Visible property or set its scale in the X, Y and Z directions using TsgDXFInsert.Scale property.
Mikhail
-
- Posts: 10
- Joined: 21 Apr 2011, 17:36
- Location: FRANCE
Re: Scale for added bitmap
Hi Mikhail,
Well, with your sample, I can add an image.
But how to know what scale use to do my 16x16px bitmap visible (not too little or not too large) on my TsgCADdxfImage object ?
How to dynamically adjust bitmap scale compare to TsgCADdxfImage object scale ?
Well, with your sample, I can add an image.
But how to know what scale use to do my 16x16px bitmap visible (not too little or not too large) on my TsgCADdxfImage object ?
How to dynamically adjust bitmap scale compare to TsgCADdxfImage object scale ?
-
- Posts: 10
- Joined: 21 Apr 2011, 17:36
- Location: FRANCE
Re: Scale for added bitmap
Just another information : my 16x16px bitmap represents a door on the plan.
Is it possible to mesure the door size and adapt this data to bitmap size ?
Is it possible to mesure the door size and adapt this data to bitmap size ?
Re: Scale for added bitmap
Hello Nicolas.
The size of added raster image can be set in drawing units. Please add the bitmap as TsgDXFImageEnt entity for this purpose:
Alexander.
The size of added raster image can be set in drawing units. Please add the bitmap as TsgDXFImageEnt entity for this purpose:
Code: Select all
var
vImageDef: TsgDXFImageDef;
vImageEnt: TsgDXFImageEnt;
begin
vImageDef := TsgDXFImageDef.Create;
vImageDef.FileName := 'raster_filename_and_path';
Img.Converter.Loads(vImageDef);
if vImageDef.Picture.Graphic <> nil then
begin
Img.Converter.Sections[csImageDefs].AddEntity(vImageDef);
vImageEnt := TsgDXFImageEnt.Create;
vImageEnt.ImageDef := vImageDef;
vImageEnt.Point := MakeFPoint(100, 100, 0);
vImageEnt.UVector := cnstXOrtAxis;
vImageEnt.VVector := cnstYOrtAxis;
vImageEnt.Size := vImageEnt.ImageDef.Size;
vImageEnt.Width := 60;
if Assigned(Img.Converter.OnCreate) then
Img.Converter.OnCreate(vImageEnt);
Img.Converter.Loads(vImageEnt);
Img.CurrentLayout.AddEntity(vImageEnt);
end
else
vImageDef.Free;
Img.GetExtents();
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support
-
- Posts: 10
- Joined: 21 Apr 2011, 17:36
- Location: FRANCE
Re: Scale for added bitmap
ok, I'll try that.
thanks.
thanks.