OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "fpdfsdk/pdfwindow/PWL_Icon.h" | 7 #include "fpdfsdk/pdfwindow/PWL_Icon.h" |
8 | 8 |
9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" | 9 #include "core/fpdfapi/fpdf_parser/include/cpdf_array.h" |
10 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" | 10 #include "core/fpdfapi/fpdf_parser/include/cpdf_stream.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 sAppStream << "q\n"; | 35 sAppStream << "q\n"; |
36 sAppStream << rcPlate.left << " " << rcPlate.bottom << " " | 36 sAppStream << rcPlate.left << " " << rcPlate.bottom << " " |
37 << rcPlate.right - rcPlate.left << " " | 37 << rcPlate.right - rcPlate.left << " " |
38 << rcPlate.top - rcPlate.bottom << " re W n\n"; | 38 << rcPlate.top - rcPlate.bottom << " re W n\n"; |
39 | 39 |
40 sAppStream << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx | 40 sAppStream << fHScale << " 0 0 " << fVScale << " " << rcPlate.left + fx |
41 << " " << rcPlate.bottom + fy << " cm\n"; | 41 << " " << rcPlate.bottom + fy << " cm\n"; |
42 sAppStream << mt.GetA() << " " << mt.GetB() << " " << mt.GetC() << " " | 42 sAppStream << mt.GetA() << " " << mt.GetB() << " " << mt.GetC() << " " |
43 << mt.GetD() << " " << mt.GetE() << " " << mt.GetF() << " cm\n"; | 43 << mt.GetD() << " " << mt.GetE() << " " << mt.GetF() << " cm\n"; |
44 | 44 |
45 sAppStream << "0 g 0 G 1 w /" << sAlias.AsByteStringC() << " Do\n" | 45 sAppStream << "0 g 0 G 1 w /" << sAlias.AsStringC() << " Do\n" |
46 << "Q\n"; | 46 << "Q\n"; |
47 } | 47 } |
48 | 48 |
49 return sAppStream.GetByteString(); | 49 return sAppStream.GetByteString(); |
50 } | 50 } |
51 | 51 |
52 void CPWL_Image::SetPDFStream(CPDF_Stream* pStream) { | 52 void CPWL_Image::SetPDFStream(CPDF_Stream* pStream) { |
53 m_pPDFStream = pStream; | 53 m_pPDFStream = pStream; |
54 } | 54 } |
55 | 55 |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; | 216 FX_FLOAT fImageFactHeight = fImageHeight * fVScale; |
217 | 217 |
218 FX_FLOAT fPlateWidth, fPlateHeight; | 218 FX_FLOAT fPlateWidth, fPlateHeight; |
219 CFX_FloatRect rcPlate = GetClientRect(); | 219 CFX_FloatRect rcPlate = GetClientRect(); |
220 fPlateWidth = rcPlate.right - rcPlate.left; | 220 fPlateWidth = rcPlate.right - rcPlate.left; |
221 fPlateHeight = rcPlate.top - rcPlate.bottom; | 221 fPlateHeight = rcPlate.top - rcPlate.bottom; |
222 | 222 |
223 x = (fPlateWidth - fImageFactWidth) * fLeft; | 223 x = (fPlateWidth - fImageFactWidth) * fLeft; |
224 y = (fPlateHeight - fImageFactHeight) * fBottom; | 224 y = (fPlateHeight - fImageFactHeight) * fBottom; |
225 } | 225 } |
OLD | NEW |