ছবি মুদ্রণ
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ছবি তোলা এবং শেয়ার করা মোবাইল ডিভাইসের সবচেয়ে জনপ্রিয় ব্যবহারগুলির মধ্যে একটি। যদি আপনার অ্যাপ্লিকেশন ফটো তোলে, সেগুলি প্রদর্শন করে, বা ব্যবহারকারীদের ছবি শেয়ার করার অনুমতি দেয়, তাহলে আপনার অ্যাপ্লিকেশনে সেই ছবিগুলির মুদ্রণ সক্ষম করার বিষয়টি বিবেচনা করা উচিত। Android সাপোর্ট লাইব্রেরি ন্যূনতম পরিমাণ কোড এবং প্রিন্ট লেআউট বিকল্পগুলির সাধারণ সেট ব্যবহার করে ছবি মুদ্রণ সক্ষম করার জন্য একটি সুবিধাজনক ফাংশন প্রদান করে৷
এই পাঠটি আপনাকে দেখায় কিভাবে v4 সমর্থন লাইব্রেরি PrintHelper
ক্লাস ব্যবহার করে একটি ছবি প্রিন্ট করতে হয়।
একটি ছবি প্রিন্ট করুন
অ্যান্ড্রয়েড সাপোর্ট লাইব্রেরি PrintHelper
ক্লাস ইমেজ প্রিন্ট করার একটি সহজ উপায় প্রদান করে। ক্লাসের একটি একক লেআউট বিকল্প রয়েছে, setScaleMode()
, যা আপনাকে দুটি বিকল্পের একটি দিয়ে মুদ্রণ করতে দেয়:
-
SCALE_MODE_FIT
- এই বিকল্পটি চিত্রটিকে আকার দেয় যাতে পুরো চিত্রটি পৃষ্ঠার মুদ্রণযোগ্য এলাকার মধ্যে দেখানো হয়। -
SCALE_MODE_FILL
- এই বিকল্পটি চিত্রটিকে স্কেল করে যাতে এটি পৃষ্ঠার সম্পূর্ণ মুদ্রণযোগ্য এলাকা পূরণ করে। এই সেটিংটি বেছে নেওয়ার অর্থ হল উপরের এবং নীচের কিছু অংশ বা ছবির বাম এবং ডান প্রান্ত প্রিন্ট করা হয়নি৷ আপনি যদি স্কেল মোড সেট না করেন তবে এই বিকল্পটি ডিফল্ট মান।
setScaleMode()
এর জন্য উভয় স্কেলিং বিকল্প ইমেজের বিদ্যমান আকৃতির অনুপাতকে অক্ষত রাখে। নিম্নলিখিত কোড উদাহরণ দেখায় কিভাবে PrintHelper
ক্লাসের একটি উদাহরণ তৈরি করতে হয়, স্কেলিং বিকল্পটি সেট করুন এবং মুদ্রণ প্রক্রিয়া শুরু করুন:
কোটলিন
private fun doPhotoPrint() {
activity?.also { context ->
PrintHelper(context).apply {
scaleMode = PrintHelper.SCALE_MODE_FIT
}.also { printHelper ->
val bitmap = BitmapFactory.decodeResource(resources, R.drawable.droids)
printHelper.printBitmap("droids.jpg - test print", bitmap)
}
}
}
জাভা
private void doPhotoPrint() {
PrintHelper photoPrinter = new PrintHelper(getActivity());
photoPrinter.setScaleMode(PrintHelper.SCALE_MODE_FIT);
Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
R.drawable.droids);
photoPrinter.printBitmap("droids.jpg - test print", bitmap);
}
এই পদ্ধতিটিকে একটি মেনু আইটেমের কর্ম হিসাবে বলা যেতে পারে। মনে রাখবেন যে ক্রিয়াগুলির জন্য মেনু আইটেমগুলি যেগুলি সর্বদা সমর্থিত নয় (যেমন মুদ্রণ) ওভারফ্লো মেনুতে রাখা উচিত৷ আরও তথ্যের জন্য, অ্যাকশন বার ডিজাইন গাইড দেখুন।
printBitmap()
পদ্ধতি কল করার পরে, আপনার অ্যাপ্লিকেশন থেকে আর কোনো পদক্ষেপের প্রয়োজন নেই। অ্যান্ড্রয়েড মুদ্রণ ব্যবহারকারী ইন্টারফেস প্রদর্শিত হয়, ব্যবহারকারীকে একটি প্রিন্টার এবং মুদ্রণ বিকল্প নির্বাচন করার অনুমতি দেয়। ব্যবহারকারী তারপর ইমেজ মুদ্রণ বা কর্ম বাতিল করতে পারেন. ব্যবহারকারী যদি ছবিটি মুদ্রণ করতে পছন্দ করেন, একটি মুদ্রণ কাজ তৈরি করা হয় এবং সিস্টেম বারে একটি মুদ্রণ বিজ্ঞপ্তি প্রদর্শিত হয়।
আপনি যদি শুধুমাত্র একটি চিত্রের বাইরে আপনার প্রিন্টআউটগুলিতে অতিরিক্ত সামগ্রী অন্তর্ভুক্ত করতে চান তবে আপনাকে অবশ্যই একটি মুদ্রণ নথি তৈরি করতে হবে। মুদ্রণের জন্য নথি তৈরির তথ্যের জন্য, একটি HTML নথি মুদ্রণ বা একটি কাস্টম নথির পাঠ মুদ্রণ দেখুন।
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-07-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# Printing photos\n\nTaking and sharing photos is one of the most popular uses for mobile devices. If your application\ntakes photos, displays them, or allows users to share images, you should consider enabling printing\nof those images in your application. The [Android Support Library](/tools/support-library) provides a convenient function for enabling image printing using a\nminimal amount of code and simple set of print layout options.\n\nThis lesson shows you how to print an image using the v4 support library [PrintHelper](/reference/androidx/print/PrintHelper) class.\n\nPrint an image\n--------------\n\nThe Android Support Library [PrintHelper](/reference/androidx/print/PrintHelper) class provides\na simple way to print images. The class has a single layout option, [setScaleMode()](/reference/androidx/print/PrintHelper#setScaleMode(int)),\nwhich allows you to print with one of two options:\n\n- [SCALE_MODE_FIT](/reference/androidx/print/PrintHelper#SCALE_MODE_FIT) - This option sizes the image so that the whole image is shown within the printable area of the page.\n- [SCALE_MODE_FILL](/reference/androidx/print/PrintHelper#SCALE_MODE_FILL) - This option scales the image so that it fills the entire printable area of the page. Choosing this setting means that some portion of the top and bottom, or left and right edges of the image is not printed. This option is the default value if you do not set a scale mode.\n\nBoth scaling options for [setScaleMode()](/reference/androidx/print/PrintHelper#setScaleMode(int)) keep the existing aspect ratio of the image intact. The following code example\nshows how to create an instance of the [PrintHelper](/reference/androidx/print/PrintHelper) class, set the\nscaling option, and start the printing process: \n\n### Kotlin\n\n```kotlin\nprivate fun doPhotoPrint() {\n activity?.also { context -\u003e\n PrintHelper(context).apply {\n scaleMode = PrintHelper.SCALE_MODE_FIT\n }.also { printHelper -\u003e\n val bitmap = BitmapFactory.decodeResource(resources, R.drawable.droids)\n printHelper.printBitmap(\"droids.jpg - test print\", bitmap)\n }\n }\n}\n```\n\n### Java\n\n```java\nprivate void doPhotoPrint() {\n PrintHelper photoPrinter = new PrintHelper(getActivity());\n photoPrinter.setScaleMode(PrintHelper.SCALE_MODE_FIT);\n Bitmap bitmap = BitmapFactory.decodeResource(getResources(),\n R.drawable.droids);\n photoPrinter.printBitmap(\"droids.jpg - test print\", bitmap);\n}\n```\n\n\nThis method can be called as the action for a menu item. Note that menu items for actions that are\nnot always supported (such as printing) should be placed in the overflow menu. For more\ninformation, see the [Action Bar](/design/patterns/actionbar) design\nguide.\n\nAfter the [printBitmap()](/reference/androidx/print/PrintHelper#printBitmap(java.lang.String, android.graphics.Bitmap)) method is\ncalled, no further action from your application is required. The Android print user interface\nappears, allowing the user to select a printer and printing options. The user can then print the\nimage or cancel the action. If the user chooses to print the image, a print job is created and a\nprinting notification appears in the system bar.\n\nIf you want to include additional content in your printouts beyond just an image, you must\nconstruct a print document. For information on creating documents for printing, see the\n[Printing an HTML document](/training/printing/html-docs) or\n[Printing a custom document](/training/printing/custom-docs)\nlessons."]]