search/mag_sel search/close
DownsampleOptions.h
1 // Copyright 2001-2021 Aspose Pty Ltd. All Rights Reserved.
3 //
4 // This file is part of Aspose.Words. The source code in this file
5 // is only intended as a supplement to the documentation, and is provided
6 // "as is", without warranty of any kind, either expressed or implied.
9 #pragma once
10 
11 #include <system/object.h>
12 #include <cstdint>
13 
14 #include <Aspose.Words.Cpp/aspose_words_api_defs.h>
15 
16 namespace Aspose { namespace Words { namespace Saving { class PdfSaveOptions; } } }
17 namespace Aspose { namespace Rendering { namespace Aps { class DownsampleOptionsCore; } } }
18 
19 namespace Aspose {
20 
21 namespace Words {
22 
23 namespace Saving {
24 
54 class ASPOSE_WORDS_SHARED_CLASS DownsampleOptions : public System::Object
55 {
57  typedef System::Object BaseType;
58 
59  typedef ::System::BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
60  ASPOSE_WORDS_SHARED_RTTI_INFO_DECL();
61 
63 
64 public:
65 
95  ASPOSE_WORDS_SHARED_API bool get_DownsampleImages() const;
96 
98  ASPOSE_WORDS_SHARED_API void set_DownsampleImages(bool value);
99 
129  ASPOSE_WORDS_SHARED_API int32_t get_Resolution() const;
130 
132  ASPOSE_WORDS_SHARED_API void set_Resolution(int32_t value);
133 
166  ASPOSE_WORDS_SHARED_API int32_t get_ResolutionThreshold() const;
167 
169  ASPOSE_WORDS_SHARED_API void set_ResolutionThreshold(int32_t value);
170 
171  ASPOSE_WORDS_SHARED_API DownsampleOptions();
172 
173 protected:
174 
176 
177 private:
178 
179  bool mDownsampleImages;
180  int32_t mResolution;
181  int32_t mResolutionThreshold;
182 
183 };
184 
185 }
186 }
187 }