Skip to content

Commit f3502cd

Browse files
authored
Add warning to jpeg compressionQuality not in range (#17178)
1 parent 9ebc7bc commit f3502cd

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/firebase_vertexai/firebase_vertexai/lib/src/imagen_api.dart

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14+
import 'dart:developer';
15+
1416
import 'package:meta/meta.dart';
1517

1618
/// Specifies the level of safety filtering for image generation.
@@ -209,8 +211,12 @@ final class ImagenFormat {
209211
ImagenFormat.png() : this('image/png', null);
210212

211213
// 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+
}
214220

215221
/// The MIME type of the image format. The default value is "image/png".
216222
final String mimeType;

0 commit comments

Comments
 (0)