@@ -1739,11 +1739,18 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WEmbeddedFrame_printBand
1739
1739
// ::PatBlt(hDC, destX+1, destY+1, destWidth-2, destHeight-2, PATCOPY);
1740
1740
// ::SelectObject(hDC, oldBrush);
1741
1741
1742
+ /* This code is rarely used now. It used to be invoked by Java plugin browser
1743
+ * printing. Today embedded frames are used only when a toolkit such as SWT
1744
+ * needs to embed
1745
+ */
1742
1746
TRY;
1743
1747
jbyte *image = NULL ;
1744
1748
try {
1745
- image = (jbyte *)env->GetPrimitiveArrayCritical (imageArray, 0 );
1749
+ int length = env->GetArrayLength (imageArray);
1750
+ image = new jbyte[length];
1746
1751
CHECK_NULL (image);
1752
+ env->GetByteArrayRegion (imageArray, 0 , length, image);
1753
+
1747
1754
struct {
1748
1755
BITMAPINFOHEADER bmiHeader;
1749
1756
DWORD* bmiColors;
@@ -1777,13 +1784,11 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WEmbeddedFrame_printBand
1777
1784
fclose (file);
1778
1785
#endif // DEBUG_PRINTING
1779
1786
} catch (...) {
1780
- if (image != NULL ) {
1781
- env->ReleasePrimitiveArrayCritical (imageArray, image, 0 );
1782
- }
1787
+ delete[] image;
1783
1788
throw ;
1784
1789
}
1785
1790
1786
- env-> ReleasePrimitiveArrayCritical (imageArray, image, 0 ) ;
1791
+ delete[] image;
1787
1792
1788
1793
CATCH_BAD_ALLOC;
1789
1794
}
@@ -2803,100 +2808,6 @@ static jbyte* reverseDIB(jbyte* imageBits, long srcWidth, long srcHeight,
2803
2808
return NULL ;
2804
2809
}
2805
2810
2806
- #if 0
2807
-
2808
- /*
2809
- * Class: sun_awt_windows_WPrinterJob
2810
- * Method: drawImageIntRGB
2811
- * Signature: (J[IFFFFFFFFII)V
2812
- */
2813
- JNIEXPORT void JNICALL Java_sun_awt_windows_WPrinterJob_drawImageIntRGB
2814
- (JNIEnv *env, jobject self,
2815
- jlong printDC, jintArray image,
2816
- jfloat destX, jfloat destY,
2817
- jfloat destWidth, jfloat destHeight,
2818
- jfloat srcX, jfloat srcY,
2819
- jfloat srcWidth, jfloat srcHeight,
2820
- jint srcBitMapWidth, jint srcBitMapHeight) {
2821
-
2822
- int result = 0;
2823
-
2824
- assert(printDC != NULL);
2825
- assert(image != NULL);
2826
- assert(srcX >= 0);
2827
- assert(srcY >= 0);
2828
- assert(srcWidth > 0);
2829
- assert(srcHeight > 0);
2830
- assert(srcBitMapWidth > 0);
2831
- assert(srcBitMapHeight > 0);
2832
-
2833
-
2834
- static int alphaMask = 0xff000000;
2835
- static int redMask = 0x00ff0000;
2836
- static int greenMask = 0x0000ff00;
2837
- static int blueMask = 0x000000ff;
2838
-
2839
- struct {
2840
- BITMAPV4HEADER header;
2841
- DWORD masks[256];
2842
- } dib;
2843
-
2844
-
2845
-
2846
- memset(&dib,0,sizeof(dib));
2847
- dib.header.bV4Size = sizeof(dib.header);
2848
- dib.header.bV4Width = srcBitMapWidth;
2849
- dib.header.bV4Height = -srcBitMapHeight; // Top down DIB
2850
- dib.header.bV4Planes = 1;
2851
- dib.header.bV4BitCount = 32;
2852
- dib.header.bV4V4Compression = BI_BITFIELDS;
2853
- dib.header.bV4SizeImage = 0; // It's the default size.
2854
- dib.header.bV4XPelsPerMeter = 0;
2855
- dib.header.bV4YPelsPerMeter = 0;
2856
- dib.header.bV4ClrUsed = 0;
2857
- dib.header.bV4ClrImportant = 0;
2858
- dib.header.bV4RedMask = redMask;
2859
- dib.header.bV4GreenMask = greenMask;
2860
- dib.header.bV4BlueMask = blueMask;
2861
- dib.header.bV4AlphaMask = alphaMask;
2862
- dib.masks[0] = redMask;
2863
- dib.masks[1] = greenMask;
2864
- dib.masks[2] = blueMask;
2865
- dib.masks[3] = alphaMask;
2866
-
2867
- jint *imageBits = NULL;
2868
-
2869
- try {
2870
- imageBits = (jint *)env->GetPrimitiveArrayCritical(image, 0);
2871
-
2872
- if (printDC){
2873
- result = ::StretchDIBits( (HDC)printDC,
2874
- ROUND_TO_LONG(destX),
2875
- ROUND_TO_LONG(destY),
2876
- ROUND_TO_LONG(destWidth),
2877
- ROUND_TO_LONG(destHeight),
2878
- ROUND_TO_LONG(srcX),
2879
- ROUND_TO_LONG(srcY),
2880
- ROUND_TO_LONG(srcWidth),
2881
- ROUND_TO_LONG(srcHeight),
2882
- imageBits,
2883
- (BITMAPINFO *)&dib,
2884
- DIB_RGB_COLORS,
2885
- SRCCOPY);
2886
-
2887
- }
2888
- } catch (...) {
2889
- if (imageBits != NULL) {
2890
- env->ReleasePrimitiveArrayCritical(image, imageBits, 0);
2891
- }
2892
- throw;
2893
- }
2894
-
2895
- env->ReleasePrimitiveArrayCritical(image, imageBits, 0);
2896
-
2897
- }
2898
- #else
2899
-
2900
2811
/*
2901
2812
* Class: sun_awt_windows_WPrinterJob
2902
2813
* Method: drawDIBImage
@@ -2991,7 +2902,6 @@ JNIEXPORT void JNICALL Java_sun_awt_windows_WPrinterJob_drawDIBImage
2991
2902
env->ReleasePrimitiveArrayCritical (image, imageBits, 0 );
2992
2903
2993
2904
}
2994
- #endif
2995
2905
2996
2906
/*
2997
2907
* An utility function to print passed image byte array to
@@ -3059,7 +2969,7 @@ static void doPrintBand(JNIEnv *env, jboolean browserPrinting,
3059
2969
CATCH_BAD_ALLOC;
3060
2970
3061
2971
}
3062
- static FILE* outfile = NULL ;
2972
+
3063
2973
static int bitsToDevice (HDC printDC, jbyte *image, long destX, long destY,
3064
2974
long width, long height) {
3065
2975
int result = 0 ;
@@ -3072,6 +2982,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
3072
2982
/* height could be negative to indicate that this is a top-down DIB */
3073
2983
// assert(height > 0);
3074
2984
2985
+ if (!printDC || height == 0 ) {
2986
+ return result;
2987
+ }
3075
2988
struct {
3076
2989
BITMAPINFOHEADER bmiHeader;
3077
2990
DWORD* bmiColors;
@@ -3099,11 +3012,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
3099
3012
if (bitMapHeader.bmiHeader .biHeight < 0 ) {
3100
3013
jbyte *dibImage = reverseDIB (image, width, height, 24 );
3101
3014
if (dibImage != NULL ) {
3102
- bitMapHeader.bmiHeader .biWidth = ROUND_TO_LONG (width);
3103
- bitMapHeader.bmiHeader .biHeight = ROUND_TO_LONG (height);
3104
-
3105
- if (printDC){
3106
- result = ::SetDIBitsToDevice (printDC,
3015
+ bitMapHeader.bmiHeader .biWidth = ROUND_TO_LONG (width);
3016
+ bitMapHeader.bmiHeader .biHeight = ROUND_TO_LONG (height);
3017
+ result = ::SetDIBitsToDevice (printDC,
3107
3018
ROUND_TO_LONG (destX), // left of dest rect
3108
3019
ROUND_TO_LONG (destY), // top of dest rect
3109
3020
ROUND_TO_LONG (width), // width of dest rect
@@ -3115,12 +3026,9 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
3115
3026
dibImage, // points to the DIB
3116
3027
(BITMAPINFO *)&bitMapHeader,
3117
3028
DIB_RGB_COLORS);
3118
- }
3119
-
3120
- free (dibImage);
3029
+ free (dibImage);
3121
3030
}
3122
3031
} else {
3123
- if (printDC){
3124
3032
result = ::SetDIBitsToDevice (printDC,
3125
3033
destX, // left of dest rect
3126
3034
destY, // top of dest rect
@@ -3133,9 +3041,30 @@ static int bitsToDevice(HDC printDC, jbyte *image, long destX, long destY,
3133
3041
image, // points to the DIB
3134
3042
(BITMAPINFO *)&bitMapHeader,
3135
3043
DIB_RGB_COLORS);
3136
- }
3044
+ if (result == 0 ) {
3045
+ size_t size = width * height * 3 ; // Always 24bpp, also DWORD aligned.
3046
+ void *imageData = NULL ;
3047
+ try {
3048
+ imageData = safe_Malloc (size);
3049
+ } catch (std::bad_alloc&) {
3050
+ return result;
3051
+ }
3052
+ memcpy (imageData, image, size);
3053
+ result = ::SetDIBitsToDevice (printDC,
3054
+ destX, // left of dest rect
3055
+ destY, // top of dest rect
3056
+ width, // width of dest rect
3057
+ height, // height of dest rect
3058
+ 0 , // left of source rect
3059
+ 0 , // top of source rect
3060
+ 0 , // line number of 1st source scan line
3061
+ height, // number of source scan lines
3062
+ imageData, // points to the DIB
3063
+ (BITMAPINFO *)&bitMapHeader,
3064
+ DIB_RGB_COLORS);
3065
+ free (imageData);
3066
+ }
3137
3067
}
3138
-
3139
3068
return result;
3140
3069
}
3141
3070
0 commit comments