File tree 1 file changed +8
-2
lines changed
packages/firebase_vertexai/firebase_vertexai/lib/src
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
+ import 'dart:developer' ;
15
+
14
16
import 'package:meta/meta.dart' ;
15
17
16
18
/// Specifies the level of safety filtering for image generation.
@@ -209,8 +211,12 @@ final class ImagenFormat {
209
211
ImagenFormat .png () : this ('image/png' , null );
210
212
211
213
// ignore: public_member_api_docs
212
- ImagenFormat .jpeg ({int ? compressionQuality})
213
- : this ('image/jpeg' , compressionQuality);
214
+ ImagenFormat .jpeg ({this .compressionQuality}) : mimeType = 'image/jpeg' {
215
+ if (compressionQuality != null &&
216
+ (compressionQuality! < 0 || compressionQuality! > 100 )) {
217
+ log ('ImagenFormat (jpeg): compressionQuality ($compressionQuality ) is out of range [0, 100].' );
218
+ }
219
+ }
214
220
215
221
/// The MIME type of the image format. The default value is "image/png".
216
222
final String mimeType;
You can’t perform that action at this time.
0 commit comments