প্যাকেজের জন্য প্রয়োজনীয় আমদানি বিবৃতি যোগ করুন image
:
import 'dart:io';
import 'package:image/image.dart' as img;
import 'package:path_provider/path_provider.dart';
কেন্দ্রীভূত চিত্র ক্রপ এবং সংরক্ষণ করতে একটি ফাংশন তৈরি করুন:
Future<void> cropAndSaveCenteredImage(String imagePath, double cropWidth, double cropHeight, String fileName) async {
// Read the image from the file path
File imageFile = File(imagePath);
List<int> imageBytes = await imageFile.readAsBytes();
img.Image image = img.decodeImage(imageBytes);
// Calculate the center position for cropping
int centerX = image.width ~/ 2;
int centerY = image.height ~/ 2;
// Calculate the crop rectangle based on the center position
int cropX =(centerX- cropWidth ~/ 2).clamp(0, image.width);
int cropY =(centerY- cropHeight ~/ 2).clamp(0, image.height);
// Crop the image
img.Image croppedImage = img.copyCrop(image, cropX, cropY, cropWidth.toInt(), cropHeight.toInt());
// Get the document directory to save the image
Directory directory = await getApplicationDocumentsDirectory();
String filePath = '${directory.path}/$fileName.png';
// Save the image to file
File file = File(filePath);
await file.writeAsBytes(img.encodePng(croppedImage));
// Display the file path
print('Image saved to: $filePath');
}
ইমেজ ফাইল পাথ, ক্রপ প্রস্থ, ক্রপ উচ্চতা এবং পছন্দসই ফাইলের নাম সহ ফাংশনটি কল করুন:
void main() async {
// Replace 'image_path.png' with the actual path of your image file
String imagePath = 'image_path.png';
// Define the desired crop width and height
double cropWidth = 200.0;
double cropHeight = 200.0;
// Define the desired filename(without the extension)
String fileName = 'cropped_image';
// Crop and save the centered image with the specified filename
await cropAndSaveCenteredImage(imagePath, cropWidth, cropHeight, fileName);
}
'image_path.png'
আপনার ইমেজ ফাইলের প্রকৃত পাথ দিয়ে প্রতিস্থাপন করা নিশ্চিত করুন । কোডটি চিত্রটি পড়বে, কেন্দ্রের অবস্থান গণনা করবে, এটির চারপাশে একটি ক্রপ আয়তক্ষেত্র তৈরি করবে এবং তারপর প্যাকেজটি ব্যবহার করে চিত্রটি ক্রপ করবে image
। ক্রপ করা ছবিটি অ্যাপ্লিকেশনের ডকুমেন্ট ডিরেক্টরিতে কাস্টম ফাইলের নাম সহ একটি নতুন PNG ইমেজ ফাইল হিসাবে সংরক্ষণ করা হবে। আপনার রেফারেন্সের জন্য ফাইল পাথ কনসোলে প্রিন্ট করা হবে।
আবার, ফাইল এবং চিত্রগুলির সাথে কাজ করার সময় যথাযথ ত্রুটি পরিচালনা এবং নাল মান পরীক্ষা করতে ভুলবেন না।