Skip to main content
Proxy Providers

Where to Print MTG Proxies: The Ultimate 2026 Guide for High-Quality Cards

7 min read

The Definitive Guide to Printing MTG Proxies

Printing Magic: The Gathering proxies is a nuanced process that balances budget, quality, and copyright considerations. As we move through 2025, the technology for creating "near-identical" or "high-quality" proxies has evolved significantly. This guide breaks down exactly where you should print your cards based on your specific needs, whether you are a Commander player looking for a $0.01 proxy or a collector trying to preserve a $10,000 deck.

---

Option 1: Professional Proxy Services (The "Golden Standard")

If you want proxies that feel indistinguishable from real Magic cards when they are in a sleeved deck, online manufacturers are the superior choice.

Why Choose This?

  • Material: They use "Blue Core" or "Black Core" game card paper (usually 250–300 gsm).
  • Finish: They utilize industrial offset printing machines (like Heidelberg presses), not standard printers.
  • Texture: These cards have the correct "rose-petal" texture and the specific bend of a real MTG card.
  • Popular Platforms & Keywords

    You won't find these on Amazon. You typically need to search for terms like "MTG Proxy China" or look for sellers on Reddit (r/mtgproxy), Discord, or dedicated proxy websites.

  • MakePlayingCards (MPC): The most well-known western option. Quality is good, but the card stock is slightly different from Wizards of the Coast cards. They are generally safe to use but expensive.
  • AliExpress / Alibaba Vendors: This is where the highest quality "chinese fakes" come from. Look for sellers offering "Textured" or "Smooth" finishes.
  • Technical Specifications for Ordering

    When uploading files to these services, ensure you use Python scripts or tools like MSE (Magic Set Editor) to generate your card fronts.

    | Feature | Specification | | :--- | :--- | | DPI | 300 DPI Minimum | | Color Profile | CMYK (for print) | | Dimensions | 63mm x 88mm (Standard Poker/MTG) | | Bleed | 3mm (to ensure edge-to-edge printing) |

    ---

    Option 2: Printing at Staples, FedEx, or Office Depot

    This is the most common question players ask: *"Can I just walk into Staples and get this done?"* The answer is yes, but with caveats.

    The Method

    You are looking for a "Laser Printer" on heavy Cardstock. Do not use Inkjet at print shops unless they have high-end photo paper; otherwise, the ink will smudge.

    1. Prepare the File: Export your card image as a PDF or JPG. 2. Select Paper: Ask for 67lb Cardstock (approx 10pt thickness). Standard printer paper (20lb) is too thin; 110lb is too thick for double-sleeving. 3. The "Copyright" Warning: * Crucial Advice: Most major chains (Staples, FedEx, Office Depot) have a policy against reproducing copyrighted material. If you hand them a file named "Black Lotus.jpg," they will refuse service. * The Workaround: Rename your files to "Custom Game Card 1" or simply act casual. If you use a self-service kiosk, you generally won't be stopped unless an employee intervenes.

    Sizing Issues at Commercial Printers

    Standard printers do not print 2.5" x 3.5" easily without margins. You will likely need to print with a small white border and use a Paper Trimmer to cut them out manually.

    What to ask the clerk: > "I need to print these PDF images double-sided on your 67lb white cardstock. Can I put this cardstock in your laser printer tray?"

    ---

    Option 3: Home Printing (The DIY Approach)

    For total control and the ability to print single cards on demand, home printing is best. However, your equipment determines the quality.

    Inkjet vs. Laser

  • Laser (Recommended): Uses toner, which does not smear. It produces sharp, crisp text. A high-end Brother or HP Laser printer can produce surprisingly good proxies.
  • Inkjet: Better for color depth, but the ink stays wet. If you play unsleeved, inkjets are a disaster. You must use Micro-Perforated Cardstock or Glossy Photo Paper.
  • Paper Recommendations

    1. Hammermill Color Copy Digital Cover (100lb Index / 67lb Cover): The gold standard for DIY proxy makers. It mimics the snap of a real card. 2. Epson Premium Presentation Paper (Matte): Great for inkjets, absorbs ink fast, and looks professional. 3. Adhesive Sheets: A pro technique involves printing on full-sheet label paper (Avery) and sticking the printout to the front of a real card (usually a basic land). This ensures the card has the perfect weight and thickness, as you are essentially just reskinning a real card.

    Python Script: Automating Card Layout

    If you have a folder of 100 high-res images (JPGs), you don't want to drag and drop them one by one. You can use a Python script to merge them onto a single printable sheet (A4 or Letter) to save paper.

    from PIL import Image
    

    import os

    def create_proxy_sheet(image_folder, output_path="proxy_sheet.png"): # Standard MTG Size in pixels (at 300 DPI) # 2.5 inch * 300 = 750 px # 3.5 inch * 300 = 1050 px card_width, card_height = 750, 1050

    # Letter size paper dimensions (at 300 DPI) paper_width, paper_height = 2550, 3300

    # Create a blank white canvas (Letter size) sheet = Image.new('RGB', (paper_width, paper_height), 'white')

    images = [img for img in os.listdir(image_folder) if img.endswith(".png") or img.endswith(".jpg")]

    # Grid settings for Letter paper (approx 3 cols x 3 rows with margins) x_offset = 100 y_offset = 100 col_gap = 50 row_gap = 50

    col_count = 0 row_count = 0

    for filename in images: if col_count >= 3: col_count = 0 row_count += 1

    try: img = Image.open(os.path.join(image_folder, filename)) img = img.resize((card_width, card_height)) # Force resize to MTG dimensions

    x_pos = x_offset + (col_count * (card_width + col_gap)) y_pos = y_offset + (row_count * (card_height + row_gap))

    sheet.paste(img, (x_pos, y_pos)) col_count += 1

    except Exception as e: print(f"Error processing {filename}: {e}")

    sheet.save(output_path) print(f"Sheet saved to {output_path}")

    Usage

    create_proxy_sheet("./my_deck_images")

    ---

    Legal & Ethical Considerations

    It is important to understand the legality of printing proxies.

    1. Personal Use: Printing proxies for personal use (playtesting, Commander, protecting expensive cards) is generally tolerated by the community and WotC as long as you are not selling them or passing them off as real cards in a tournament. 2. IP Infringement: Technically, scanning and printing a copyrighted image (like the artwork of a "Mox Sapphire") is copyright infringement. 3. Counterfeiting: This is the illegal act of trying to mimic a real card *exactly* (including the card back, security features, and set symbols) to defraud someone. Never print a card back. Real Magic cards have a specific blue glue layer and a distinct rosette pattern that printers cannot easily replicate. If you print proxies, always use a distinguishable back or write "PROXY" on the card, or ensure they are in opaque sleeves.

    Summary Checklist for 2025

  • High Quality: Buy from a specialized "China Proxy" vendor.
  • Medium Quality: Staples Laser Print on 67lb Coverstock.
  • Low Quality/Casual: Home Inkjet on Photo Paper.

Final Verdict: For the best experience in 2025, buy high-quality cardstock (MPC or AliExpress) so your deck shuffles perfectly. If you are in a rush, the self-service kiosk at Staples with your own heavy cardstock is a viable emergency solution.

Share: