Searched refs:bitmap (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/extension/internal/ |
H A D | metafile-inout.cpp | 67 /* Given "bitmap", this returns the pixel of bitmap at the point 70 pixel_t * Metafile::pixel_at (bitmap_t * bitmap, int x, int y) argument 72 return bitmap->pixels + bitmap->width * y + x; 76 /* Write "bitmap" to a PNG file specified by "path"; returns 0 on 99 bitmap_t *bitmap = &bmStore; local 102 bitmap->pixels=(pixel_t *)px; 103 bitmap->width = width; 104 bitmap [all...] |
H A D | metafile-inout.h | 70 static pixel_t *pixel_at (bitmap_t * bitmap, int x, int y);
|
/inkscape/src/ui/dialog/ |
H A D | filedialogimpl-win32.cpp | 330 // I don't know of any other way to define "bitmap" formats other than by listing them 361 // Filter bitmap files 757 BITMAP bitmap; local 758 GetObject(pImpl->_preview_bitmap, sizeof(bitmap), &bitmap); 759 const int destX = (rcClient.right - bitmap.bmWidth) / 2; 765 BitBlt(dc, destX, 0, bitmap.bmWidth, bitmap.bmHeight, 775 destX + bitmap.bmWidth, bitmap [all...] |
/inkscape/src/libuemf/ |
H A D | uwmf.h | 745 #define U_TEST_NOPX2(A,B) (A == (uint32_t) (B + 3)) //!< A is Size16_4 (extracted and aligned), B = xb true if no bitmap associated with the structure, used with some BLT records. 746 #define U_TEST_NOPXB(A,B) (A/2 == (uint32_t) (B + 3)) //!< A is Size16_4 (extracted and aligned)*2, B = xb, true if no bitmap associated with the structure, used with some BLT records. 865 uint8_t Bits[1]; //!< bitmap pixel data. Bytes contained = (((Width * BitsPixel + 15) >> 4) << 1) * Height 870 int16_t Type; //!< "bitmap type" MS PDF does not define this field beyond this. 871 int16_t Width; //!< bitmap width in pixels. 872 int16_t Height; //!< bitmap height in scan lines. 1388 if RecordSize == ((xb) + 3) then there is no bitmap and use the _NOPX form, otherwise use the _PX form 1410 if RecordSize == ((xb) + 3) then there is no bitmap and use the _NOPX form, otherwise use the _PX form 1425 U_BITMAP16 bitmap; //!< Src bitmap member in struct:__anon372 1476 U_BITMAP16 bitmap; //!< Src bitmap member in struct:__anon374 [all...] |
H A D | uwmf_endian.c | 496 if(U_TEST_NOPX2(Size16,xb)){ /* no bitmap */ 499 else { /* yes bitmap */ 501 bitmap16_swap(record + offsetof(U_WMRBITBLT_PX,bitmap)); 511 if(U_TEST_NOPX2(Size16,xb)){ /* no bitmap */ 514 else { /* yes bitmap */ 516 bitmap16_swap(record + offsetof(U_WMRSTRETCHBLT_PX,bitmap)); 665 if(U_TEST_NOPX2(Size16,xb)){ /* no bitmap */ 668 else { /* yes bitmap */ 680 if(U_TEST_NOPX2(Size16,xb)){ /* no bitmap */ 683 else { /* yes bitmap */ [all...] |
H A D | uwmf.c | 677 \brief Check that the bitmap in the specified packed DIB is compatible with the record size 683 This method can only test DIBs that hold Microsoft's various bitmap types. PNG or JPG is just a bag 940 \param Type bitmap Type (not described at all in the WMF PDF) 941 \param Width bitmap width in pixels. 942 \param Height bitmap height in scan lines. 945 \param Bits bitmap pixel data. Bytes contained = (((Width * BitsPixel + 15) >> 4) << 1) * Height 1161 \return bitmap of WMR record properties, or U_WMR_INVALID on error or release of all memory. 3479 \param Px bitmap buffer, for use with Bmi 4751 \param ClrUsed Number of bmciColors in U_BITMAPINFO/U_BITMAPCOREINFO that are used by the bitmap 5453 \param Bm16 bitmap16 object (fields in it are all 0 if no bitmap i [all...] |
Completed in 57 milliseconds